Kaynağa Gözat

(refactor) Move constructor to top of class

main
Rob Hallam 1 yıl önce
ebeveyn
işleme
4b01248b29
1 değiştirilmiş dosya ile 9 ekleme ve 9 silme
  1. +9
    -9
      week1.java

+ 9
- 9
week1.java Dosyayı Görüntüle

@@ -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;
}


Yükleniyor…
İptal
Kaydet