Auf Thema antworten

[code=java]public String printLectures() {

  String result = "";

  for (Lecture lecture : this.lectures) {

    result += lecture.getName() + "\n";

  }

  return result;

}[/code]

?



Oben