Anfängerhilfe

Status
Nicht offen für weitere Antworten.
S

Susi

Gast
Hallo,

bei meinen Berufskolleg haben wir gerade mit JAVA angefangen. Durch eine Operation konnte ich leider nicht von Anfang an dabei sein und hänge deshalb ziemlich weit hinterher.

Ich habe hier von unserer 1. Hausaufgabe die Lösung, diesen Code paste ich unten. Meine Bitte an euch, wer die Zeit und die Lust findet könnte mir die Begriffe erklären am besten den ganzen Code. z. b. so Zeile 1 macht dies und das Zeile 2 das und das etc.
Code:
package uniAdministration;
 
public class Module implements ModuleIF {
 
private int moduleCode = 0;
private String moduleName = new String();
 
	public Module (int moduleCode, String moduleName) {
		this.moduleName = moduleName;
		this.moduleCode = moduleCode;
	}
 
	public String getModulename() {
		return this.moduleName;
	}
 
	public int getModuleCode() {
		return this.moduleCode;
	}
 
	public void setModuleCode (int moduleCode) {
		this.moduleName = moduleName;
	}
 
	public void printName(String text) {
		System.out.println("getModuleName is: " + text + this.getModuleName());
	}
 
	public void print (String text) {
		System.out.println("Permit object: " + text);
		System.out.println("getModuleName is: " + this.getModulename());
		System.out.println("getModuleCode is: " + this.getModuleCode());
	}
}
 
package uniAdministration;
 
public class Permit implements PermitIF
 
{
	private int  codeNumber = 0;
	private String name = new String();
 
	public String getName() {
		return this.name;
	}
 
	public void setname (String name) {
		this.name = name;
	}
 
	public int getCodeNumber() {
		return this.codeNumber;
	}
 
	public void setCodeNumber(int codenumber) {
		this.codeNumber = codeNumber;
	}
 
	public void print (String text) {
		System.out.println("Permit Object: " + text);
		System.out.println("this.getname is " + this.getName());
		System.out.println("this.getCodeNumber is: " + this.getCodeNumber());
	}
}
 
package uniAdministration;
 
import java.util.*;
 
public class Person implements PersonIF{
 
	private int yearOfBirth = 0;
	private String name = "Test";
 
public Person (int year, String name) {
	yearOfBirth = year;
	this.name = name
}
 
	public String getName() {
		return this.name;
	}
 
	public void setName(String name) {
		this.name = name;
	}
 
	public int getYearOfBirth(){
		return yearOfBirth;
	}
 
	public void setYearOfBirth(int yearOfBirth) {
		this.yearOfBirth = yearOfBirth;
	}
 
	public int getCurrentYear() {
		GregorianCalendar calender = new GregorianCalendar();
		return calender.get(Calendar.YEAR);
	}
 
	public int getAge() {
		int currentY = getCurrentYear();
		return (currentY - yearOfBirth);
	}
 
	public void printName(String text) {     
		 System.out.println(text + " name is: " + this.getName() );     
		 System.out.println();
	 }
 
	public void print(String text) {
        System.out.println("Person Object: " + text);        
        System.out.println("     this.getName() is:          " + this.getName() );
        System.out.println("     this.getYearOfBirth() is:   " + this.getYearOfBirth() );
        System.out.println("     this.getCurrentYear() is:   " + this.getCurrentYear() );
        System.out.println("     this.getAge() is:           " + this.getAge() );
        System.out.println();
	}
}
Bin für jede Hilfe dankbar.

Liebe Grüße Susi
 
Status
Nicht offen für weitere Antworten.

Ähnliche Java Themen

Neue Themen


Oben