Sun certification level tutorial and examples Organized by topic.
package oops;class Engine{ void m1() { ..... } void m2() { ..... }}public class Car { public static void main(String at[]) { Engine a=new Engine(); a.m1(); a.m2(); }}
No comments:
Post a Comment