Found 33676 Articles for Programming

What is the difference between transient and volatile in Java?

Rishi Raj
Updated on 26-Feb-2020 10:11:11

744 Views

transient: An instance variable is marked transient to indicate the JVM to skip the particular variable when serializing the object containing it.  This modifier is included in the statement that creates the variable, preceding the class or data type of the variable.Examplepublic transient int limit = 55;   // will not persist public int b;   // will persistvolatile: The volatile modifier is used to let the JVM know that a thread accessing the variable must always merge its own private copy of the variable with the master copy in the memory.Accessing a volatile variable synchronizes all the cached copied ... Read More

What does the modifier volatile in Java do?

Jai Janardhan
Updated on 19-Feb-2020 12:41:26

622 Views

The volatile modifier is used to let the JVM understand that a thread accessing the variable should always merge its own personal copy of the variable with the original in the memory.Accessing a volatile variable synchronizes all the cached copy of the variables in the main memory. Volatile can only be applied to instance variables, which are of type object or private. A volatile object reference can be null.Examplepublic class MyRunnable implements Runnable {    private volatile boolean active;    public void run() {       active = true;       while (active) {           }    }    public void stop() {       active = false;      } }

What does the modifier transient in Java do?

George John
Updated on 30-Jul-2019 22:30:20

248 Views

An instance variable is marked transient to point the JVM to skip the actual variable once serializing the thing containing it. This modifier is included in the statement that creates the variable, preceding the class or data type of the variable. Example public class Employee implements java.io.Serializable { public String name; public String address; public transient int SSN; public int number; public void mailCheck() { System.out.println("Mailing a check to " + name + " ... Read More

Can access modifiers be used for local variables in Java?

Arushi
Updated on 30-Jul-2019 22:30:20

799 Views

Yes, a local variable can be public, private, protected or default.

How to use the final modifier in Java?

Moumita
Updated on 25-Oct-2024 23:40:58

1K+ Views

In this article, we will learn to use the final modifier in Java. The final modifier can be associated with methods, classes, and variables. Once we declare it final − A final class cannot be instantiated. A final method cannot be overridden. A final variable cannot be reassigned. These restrictions make code more predictable and can prevent unintentional modifications. Steps to use the final modifierFollowing are the steps to use the final modifier −First, we will define a class TestExample and declare a final variable value ... Read More

What is the difference between ++i and i++ in c?

Jayashree
Updated on 12-Sep-2023 02:57:07

38K+ Views

In C, ++ and -- operators are called increment and decrement operators. They are unary operators needing only one operand. Hence ++ as well as -- operator can appear before or after the operand with same effect. That means both i++ and ++i will be equivalent.i=5; i++; printf("%d", i);and i=5 ++i; printf("%d", i);both will make i=6.However, when increment expression is used along with assignment operator, then operator precedence will come into picture. i=5; j=i++;In this case, precedence of = is higher than postfix ++. So, value of i is assigned to i before incrementing i. Here j becomes 5 and i becomes 6.i=5; ... Read More

What does abstract modifier in Java do?

Vikyath Ram
Updated on 30-Jul-2019 22:30:20

377 Views

An abstract keyword is used to declare methods abstract methods and abstract classes. Once a method is declared abstract we should not specify body for those. Example public abstract class Sample{ public abstract demo(){ } } Error Sample.java:2: error: invalid method declaration; return type required public abstract demo(){ ^ 1 error And once a class is declared abstract it cannot be instantiated. Example public abstract class Sample{ public abstract void demo(); public static void main(String args[]){ new Sample(); } } Error C:\Sample>javac Sample.java Sample.java:4: error: Sample is abstract; cannot be instantiated new Sample(); ^ 1 error

What does synchronized modifier do in Java?

Rishi Raj
Updated on 30-Jul-2019 22:30:20

1K+ Views

The synchronized keyword used to indicate that a method can be accessed by only one thread at a time. The synchronized modifier can be applied with any of the four access level modifiers. Example Live Demo public class TestThread { public static Object Lock1 = new Object(); public static Object Lock2 = new Object(); public static void main(String args[]) { ThreadDemo1 T1 = new ThreadDemo1(); ThreadDemo2 T2 = new ThreadDemo2(); ... Read More

Can a Java array be declared as a static field, local variable or a method parameter?

Rahul Sharma
Updated on 30-Jul-2019 22:30:20

633 Views

We can declare an array as a local variable or method parameter but, an array cannot be static. Example public class Test{ public void sample(){ static int[] myArray = {20, 30}; System.out.println(); } public static void main(String args[]){ Test t = new Test(); t.sample(); } } Error C:\Sample>javac Test.java Test.java:3: error: illegal start of expression static int[] myArray = {20, 30}; ^ 1 error

What are final, abstract, synchronized non-access modifiers in Java?

Jai Janardhan
Updated on 30-Jul-2019 22:30:20

451 Views

The abstract keyword is used to declare methods abstract methods and abstract classes. Once a method is declared abstract we should not specify body for those. And once a class is declared abstract it cannot be instantiated. Example Live Demo abstract class Employee { private String name; private String address; private int number; public Employee(String name, String address, int number) { System.out.println("Constructing an Employee"); this.name = name; ... Read More

Advertisements