Package nolza_g1.javatutorials.packages.example1

Examples of nolza_g1.javatutorials.packages.example1.A


//class B is in different package with A
//therefore B cannot use A class
public class B {

  public static void main(String[] args) {
    A a = new A();

  }
View Full Code Here

TOP

Related Classes of nolza_g1.javatutorials.packages.example1.A

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.