Answer Posted / rajkumar ksr college
interface Used to declare a special type of class that only
contains abstract methods, constant ( static final ) fields
and static interfaces. It can later be implemented by
classes that declare the interface with the implements
keyword
http://en.wikipedia.org/wiki/Java_keywords
Class verifier from JDK 1.2 beta 4 also makes it impossible
for JavaGO to inline constructors and replace virtual calls
with non-virtual.JavaGO has special options -not-inline-
constructor and -not-use-invokespecial to disable such
optimizations.Option -not-inline-virtual prevents JavaGO
from inlining virtual methods (while it can still inline
final and static methods)and in conjunction with -not-use-
invokespecial option makesoptimization performed by JavaGO
really safe (such classes can be used with other classes
not presented to JavaGO), but looks like such
optimizationsalso can be done by Java compiler with -O
option.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is purpose of applet programming?
Is an integer an object?
State some advantages of java?
Is alive and join method in java?
How to connect to a remote database using Applet?
Explain parallel processing in java8?
Distinguish between a predicate and a function?
Define max and min heap, also the search time of heap.
how we can make a write-only class in java?
Can java program run without jre?
What does this () mean in constructor chaining concept?
What is oop in java?
What are the types of strings?
What is the difference between final, finally and finalize()?
You can create a string object as string str = “abc”; why cant a button object be created as button bt = “abc”;? Explain