본문 바로가기
Example 2018

testOperatorProject - 변수실습 main 2개

by ZEROMI 2018. 4. 8.
728x90

package practice.run;


import variable.sample.*;


public class TestPractice {


public static void main(String[] args) {

VariablePractice test = new VariablePractice();

test.sungjuk();


}


}



-----------------------------------


package practice.run;


import variable.practice.Practice2;

import variable.sample.VariablePractice;


public class TestPractice2 {


public static void main(String[] args) {

// 변수 실습 실행용

/*Practice2 test2 = new test2()*/;

Practice2 test = new Practice2();

test.practice3();

}


}



728x90