Selaa lähdekoodia

(refactor) Move constructor to top of class

main
Rob Hallam 1 vuosi sitten
vanhempi
commit
4b01248b29
1 muutettua tiedostoa jossa 9 lisäystä ja 9 poistoa
  1. +9
    -9
      week1.java

+ 9
- 9
week1.java Näytä tiedosto

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


Ladataan…
Peruuta
Tallenna