Static:
we can use the keyword static either to method or to a variable.
when we declare to a method,(eg: public static void main(String args[]),we can use this method without any object.
when we use to a variable,there will be only one instance of that variable irrespective of how many objects that get created of that class.
Final:
Usage of final to method or to a variable makes them as constant. It's value cannot be changed...
The final keyword can be used to modify a class, method, or variable.When used on a variable, it means that variable cannot be changed once set.When used on a method, it means that no subclasses may override that method.
Unix is an operating system, Java is a language.
Rowset
difference between constant and static variables in java
A constant in Java is defined using the "final" modifier. For instance: final double Density_Of_Water = 1.000; would set Density_Of_Water to 1.000. This value can not be modified throughout the program because "final" told the compiler that this value would not change. A variable however, can be changed by the user throughout the program.
The final keyword can be used to modify a class, method, or variable.When used on a variable, it means that variable cannot be changed once set.When used on a method, it means that no subclasses may override that method.
They are different versions. Java 5 is newer than Java 2. Think of it like the difference between the Playstation 1 and the Playstation 3.
Java is object oriented, C is not...
kamina
kamina
Unix is an operating system, Java is a language.
Rowset
JAD-Java Application Description JAR-Java archive
java is a programming language/platform that embodies object oriented programming concepts. The question of what is the difference is like asking what is the difference between cars and a Volvo.
Java doesn't have pointers. C++ has pointers.
Both are same
difference between constant and static variables in java