My question is that if we can't create the object of an abstract class then how we can use non-static & non-abstract method either in class or out of the class.
As we are able to define normal the method
public class Check
{
// sonu s = new sonu();eror
public Check()
{
}
}
public abstract class sonu
{
public sonu()
{
}
public void check()//in my sense there is no use of this function.....
{
}
public static void checking()//this is usefull.....
{
}
}
Regards,
Vikash Pathak