본문 바로가기

공부/자바

Run 을 눌렀는데 Selection does not contain a main type에러, 클래스 안의 다른클래스변수와 다른클래스객체 생성하여 사용

반응형

1. Run 을 눌렀는데 Selection does not contain a main type에러
-> public static void main(String[] args) 정확히 쓸것

2.
(1)
import Table.Table;

class ds{
 Table a;
}


public class Mains{
 public static void main(String[] args)
 {
  ds ba = new ds();
  ba.a = new Table();
  ba.a.c = 0;
  System.out.println(ba.a.c);
 }
}

클래스 안에 다른 클래스변수만 선언해놓고 main함수에서 다른 클래스변수만 선언해 놓은 것을 객체를 생성해서 사용가능

(2)
import Table.Table;

class ds{
 Table a = new Table();
}


public class Mains{
 public static void main(String[] args)
 {
  ds ba = new ds();
  ba.a.c = 0;
  System.out.println(ba.a.c);
 }
}

클래스 안에 다른 클래스의 객체를 생성해서 main함수에서 다른 클래스의 객체를 사용가능

반응형