answersLogoWhite

0

These are two unrelated concepts. A final object is one that is not subject to inheritance (in the case of a class), may not be overridden (in the case of a member function), or not subject to change once set (in the case of an instance of a class). A constructor allows an instance to be loaded with values when the object is created. A final member variable may be set only once, and may never be altered after that point. This can eliminate certain classes of programming bugs. For example, java.lang.Math.PI should never change (it is a constant value), so accidentally assigning a value to this symbol should result in an error.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Does Java support copy constructor?

No. Java does not support copy constructor


Can you overload the constructor in java true or false?

Yes, you can have more than one constructor with a different set of parameters.


What happens when no constructor function is declared in a class - in Java?

When any constructor is deffined in your class, the java compiler create a default no argument constructor for you. This constructor only have an invocation to the super class constructor (" super( ) ").


Is there a sample program for constructor?

All Java programs would have a constructor... public class Test { public Test(){ ... } ..... } This is a constructor. Even if you dont code the constructor Java would automatically place a default constructor for compilation.


What is use of constructor in java?

Constructor is used to do something (written in constructor) immediately after object creation.


What are different type of constructor in java?

Every class, including abstract classes, MUST have a constructor. The different types are: a. Regular constructors b. Overloaded constructors and c. Private constructors


Can you initialize an object without constructor in java?

No. if you wish to create an object that you plan on using in a java program then the answer is NO. You cannot initialize an object of a Java class without calling the constructor.


Can a constructor be defined within a method in java?

No.


Can you create a constructor for an interface in java?

NO, we cannot create a contructor for an interface in java.


What is copy constructor in java?

Java, unlike C++ does not support copy constructors.


Why constructor rather than classes in java?

Constructor is not an alternative to class. In Java, you create classes; the classes contain methods - including the constructor, which can be viewed as a special method. If you want to have a constructor, you need a class that surrounds it, so it's not one or the other.


What is a constructor and its mandatory to use constructor in a class?

A constructor is a method that is invoked when an object is created. As to being mandatory, that really depends on the programming language; in the case of Java, each class must have a constructor, however, in many cases Java will automatically provide a default constructor, so you don't really need to program it.