소스 검색

(refactor) Move constructor to top of class

main
Rob Hallam 1 년 전
부모
커밋
4b01248b29
1개의 변경된 파일9개의 추가작업 그리고 9개의 파일을 삭제
  1. +9
    -9
      week1.java

+ 9
- 9
week1.java 파일 보기

@@ -33,6 +33,15 @@ class Section {

class Lab {

public Lab(int lN) {
String title = String.format("|Starting Lab %s|", lN);
this._labNumber = lN;

System.out.println("*".repeat(title.length()));
System.out.println(title);
System.out.println("*".repeat(title.length()));
}

private int _labNumber;
public Section currentSection;

@@ -52,15 +61,6 @@ class Lab {
System.out.println("-".repeat(title.length()));
}

public Lab(int lN) {
String title = String.format("|Starting Lab %s|", lN);
this._labNumber = lN;

System.out.println("*".repeat(title.length()));
System.out.println(title);
System.out.println("*".repeat(title.length()));
}

public int getLabNumber() {
return this._labNumber;
}


불러오는 중...
취소
저장