Why is sizeof not a function?
How to access a method that it declared as protected?
Explain about abstract classes in java?
What is unicode?
How to use scanner in java?
Can singleton class be serialized?
________ exception must be either caught or specified in throws class of the method.
What is light weight component?
Hi Friends, I am new to java. Can u explain about thread concept.How i know one thread is locked, and how can i force or acquire another thread for lock . Finally how to know thread is released from lock. Explain types of lock(like method level and block level) in thread.
Hi buddy, well i got that there is always a default constructor with abstract class. OK. But why not with interface? Thanks in advance.
What is a “stateless” protocol ?
I Have a class abstract with one abstract method, so that method should override in the subclass, but i dont want to override, if i am not override what will happen? If compilation will occur then i dont want to give compilation error, then what we need to do??? See the sample program. public abstract class AbstractExample { public abstract void sampleMethod(); } public class AbstractExampleImple extends AbstractExample { }
Can you create an object of an abstract class?