Switch to full style
Java2 codes,problems ,discussions and solutions are here
Post a reply

concrete class

Wed Sep 14, 2011 4:42 am

what are some examples of concrete class?



Re: concrete class

Thu Sep 15, 2011 12:59 am

concrete class is the class can has instances and it is the opposite of abstract class .
Code:
public class shape {
      int size;
      public shape(int size){
            this.size=size;
      }
}


Post a reply
  Related Posts  to : concrete class
 java abstract class,concrete class and interface     -  
 what is a concrete class     -  
 Define class helper class to check the method existance     -  
 relationship between the Canvas class and the Graphics class     -  
 inner class that is a member of an outer class?     -  
 Define class inside another class C++     -  
 load class to applet- load frame class to applet     -  
 PHP class example     -  
 PHP example for a class     -  
 Class Constants in php     -