How to create object for abstract class with out creating sub class object and referring its own object
For example :
public class abstract student{
private int sno;
private String sname;
}
public class Test{
public static void main(String[] rs )
{
Student s= new Student();// it is not working
}
}
Without creating sub class or implementation class I need solution