본문 바로가기
  • Adillete
【♣부트 캠프♣】/▷부캠- 에러 모음

[24.06.02] Exception in thread "main" java.lang.Error: Unresolved compilation problem: l cannot be resolved to a variable at com.day9.RectA.print(Test4.java:31) at com.day9.Test4.main(Test4.java:47)

by 아딜렛 2024. 6. 2.

Exception in thread "main" java.lang.Error: Unresolved compilation problem:  l cannot be resolved to a variable at com.day9.RectA.print(Test4.java:31)at cohttp://m.day9.Test4.main(Test4.java:47)

	public void print(int a, int b) {
		System.out.println("가로: "+w+",세로: "+h);
		System.out.println("둘레: "+l);
	} //▶객체 오버로딩으로 초기화 print(int a, int b) int b →int l로 바꿔야한다.

▶문제

 

▼해결

	public void print(int a, int l) {
		System.out.println("가로: "+w+",세로: "+h);
		System.out.println("둘레: "+l);
	}