why java does not contain pointers?
Answer Posted / rameshreddy
pointer means it is something pointes to other things. or
creating memory allocation for all the things(
class,methods,variables). In java creating memory allocation
is possible through java jvm only.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is flush buffer?
Write a program in java to calculate the difference between the sum of the odd level and even level nodes of a binary tree.
Can you create an object of an abstract class?
Can we use string in the switch case?
Can I extend singleton class in java?
What is parameters example?
What is java oops?
What is the use of private static?
Why wait and notify methods are declared in object class?
Are floats faster than doubles?
Name four container classes.
Can a class have more than one object?
Difference between this() and super() in java ?
Explain the difference between arraylist and linkedlist in java?
Hi all, I am dng a mini project on FileSplitter application which splits the GBs of logfile into Smaller chunks(mbs) depending on the split size." How to handle GBs file? I am getting OutOfMemoryException, when I input such GB sized file. Thx