class Data {int x; }

class ReferenceParamEx{
public static void main (String[] args)
{
Data d = new Data ();

d.x = 10;

System.out.println("main(): x = "+ d.x);
}

static void change(Data d){
d.x = 1000;
System.out.println("change() : x = "+d.x);
}

}

오후 3:21 All files are up-to-date


오후 3:25 Compilation completed successfully in 2s 553ms



저게 전체 코드구요 자바를 처음 배워보고있 는데, 자바는 저정도 코드의 컴파일 시간이 2초가 넘게 걸리나요?


정상적인거같지가 않아서.. 환경설정이라던가 뭔가 잘못된게 있나 싶어서요 ㄷ