Can we declare Pointer in Java?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
No, pointer support is not available in Java. Java needed to be more secure because it lacks a feature that allows for pointers.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
No, pointer support is not available in Java. Java needed to be more secure because it lacks a feature that allows for pointers.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
No, pointer support is not available in Java. Java needed to be more secure because it lacks a feature that allows for pointers.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
No, pointer support is not available in Java. Java needed to be more secure because it lacks a feature that allows for pointers.
| Is This Answer Correct ? | 0 Yes | 0 No |
No, pointer support is not available in Java. Java needed to be more secure because it lacks a feature that allows for pointers.
| Is This Answer Correct ? | 0 Yes | 0 No |
What if the main() method is declared as private? What happens when the static modifier is removed from the signature of the main() method?
Why java is not 100% object-oriented?
Why wait(),notify(),notifyAll() methods defined in Object class althought we are using in only threads.
Can static method access instance variables ?
What is a copy constructor in java?
Why arraylist is not synchronized in java example?
What is variable length arguments in java?
Which method you will use to create a new file to store some log data. Each time a new log entry is necessary, write string to the file in java ?
What does nullpointerexception mean?
What is the difference between variable & constant?
A abstract class extending an abstract class.Super class has both abstract and non-abstract methods.How can we implement abstract and non-abstract mehtods? Explain with snippet
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }