What is the difference(or similarity if there are some)
between object and a variable?
Answer Posted / ved.b.tripahti
Variables : variables are the place holder for a particular
type of data and this type actually determine how much space
this var will take in the memory.
int varEx = 2; // here varEx is a integer type variable that
take integer literals and will be used as identifier for the
user.
Object : Object shows the behavior that a particular class
can perform.this object is a medium to access the behaviour
of class.
Object may regards as the blue print of a particular class.
Car carObj = new Car(); // carObj is the reference ID of the
Car class.
here -- new Car() is the actual object that will be created
by JVM.
Note :- Object always created using - new keyword.the
identifier before =, is the reference id of new Car() object,
carObj is not the actual object itself.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the basic concept of java?
What is super constructor?
What is a package in java? List down various advantages of packages.
What do you understand by final value?
What is the use of optional ?
What is queue in java?
What is the difference between a method and a procedure?
is there a separate stack for each thread in java? : Java thread
How many bits is size_t?
What are the differences between Java 1.0 and Java 2.0?
What are instance variables?
Can you declare the main method as final?
Can we have more than one package statement in source file ?
I want to control database connections in my program and want that only one thread should be able to make database connection at a time. How can I implement this logic?
Why arraylist is not synchronized in java example?