what is an object and how do you allocate memory to it?
Answer Posted / sunitha
It is an instance of class or run time entity which binds
data members and methods together.
example:
car
Attributes(state of the object)
name, no. make , price, mileage.
Methods (Behavior of the object): start, stop,
Accelerate,
By using new operator we can allocate memory to object.
by using constructions we can allocate memory directly
here we no need to use new operator . for deal location of
memory we can use destruction's .
Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is use of inner class in java?
When should I use stringbuffer?
How are java objects passed to a method and what are native methods?
Explain what pure virtual function is?
Explain heap sort?
What are disadvantages of java?
Differentiate jar and war files?
When should you use arraylist and when should you use linkedlist?
What is a literal coding?
Is a method a function?
What java ide should I use?
How is it possible for two string objects with identical values not to be equal under the == operator?
What is Recursion Function?
Why do we need singleton?
Difference between comparator and comparable in java?