Compare commits
5 Commits
kleinerRec
...
master
Author | SHA1 | Date |
---|---|---|
Kai Sellmann | 267f4b0af0 | |
Kai Sellmann | d128ea407b | |
Kai Sellmann | 6e57e302f4 | |
Kai Sellmann | 9d3eb24eee | |
Kai Sellmann | 9bb4149c94 |
|
@ -6,6 +6,7 @@
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
<attribute name="maven.pomderived" value="true"/>
|
||||||
</attributes>
|
</attributes>
|
||||||
</classpathentry>
|
</classpathentry>
|
||||||
|
<classpathentry kind="src" path="beispieleVL"/>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
|
||||||
<attributes>
|
<attributes>
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
<attribute name="maven.pomderived" value="true"/>
|
||||||
|
|
|
@ -1,8 +1,110 @@
|
||||||
eclipse.preferences.version=1
|
eclipse.preferences.version=1
|
||||||
|
org.eclipse.jdt.core.builder.annotationPath.allLocations=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.annotation.inheritNullAnnotations=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.annotation.missingNonNullByDefaultAnnotation=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.annotation.nonnull=org.eclipse.jdt.annotation.NonNull
|
||||||
|
org.eclipse.jdt.core.compiler.annotation.nonnull.secondary=
|
||||||
|
org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault
|
||||||
|
org.eclipse.jdt.core.compiler.annotation.nonnullbydefault.secondary=
|
||||||
|
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||||
|
org.eclipse.jdt.core.compiler.annotation.nullable.secondary=
|
||||||
|
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
|
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
|
||||||
org.eclipse.jdt.core.compiler.compliance=17
|
org.eclipse.jdt.core.compiler.compliance=17
|
||||||
|
org.eclipse.jdt.core.compiler.problem.APILeak=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.annotatedTypeArgumentToUnannotated=info
|
||||||
|
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.autoboxing=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.comparingIdentical=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.deadCode=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.deprecation=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.deprecationInDeprecatedCode=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.deprecationWhenOverridingDeprecatedMethod=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.discouragedReference=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.emptyStatement=ignore
|
||||||
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
|
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.explicitlyClosedAutoCloseable=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.fallthroughCase=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.fatalOptionalError=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.fieldHiding=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.finalParameterBound=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.finallyBlockNotCompletingNormally=warning
|
||||||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
|
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.hiddenCatchBlock=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.includeNullInfoFromAsserts=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.incompatibleNonInheritedInterfaceMethod=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.incompleteEnumSwitch=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.indirectStaticAccess=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.missingDefaultCase=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.missingDeprecatedAnnotation=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.missingEnumCaseDespiteDefault=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.missingHashCodeMethod=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotationForInterfaceMethodImplementation=enabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.missingSerialVersion=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.missingSynchronizedOnInheritedMethod=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.noEffectAssignment=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.noImplicitStringConversion=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.nonExternalizedStringLiteral=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.nonnullParameterAnnotationDropped=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.nonnullTypeVariableFromLegacyInvocation=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.nullAnnotationInferenceConflict=error
|
||||||
|
org.eclipse.jdt.core.compiler.problem.nullReference=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.nullSpecViolation=error
|
||||||
|
org.eclipse.jdt.core.compiler.problem.nullUncheckedConversion=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.overridingPackageDefaultMethod=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.parameterAssignment=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.pessimisticNullAnalysisForFreeTypeVariables=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.possibleAccidentalBooleanAssignment=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.potentialNullReference=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.potentiallyUnclosedCloseable=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.rawTypeReference=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.redundantNullAnnotation=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.redundantNullCheck=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.redundantSpecificationOfTypeArguments=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.redundantSuperinterface=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.reportMethodCanBePotentiallyStatic=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.reportMethodCanBeStatic=ignore
|
||||||
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
|
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.specialParameterHidingField=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.staticAccessReceiver=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.suppressOptionalErrors=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.suppressWarnings=enabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.suppressWarningsNotFullyAnalysed=info
|
||||||
|
org.eclipse.jdt.core.compiler.problem.syntacticNullAnalysisForFields=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.terminalDeprecation=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unavoidableGenericTypeProblems=enabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unclosedCloseable=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentType=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unlikelyCollectionMethodArgumentTypeStrict=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unlikelyEqualsArgumentType=info
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unstableAutoModuleName=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedExceptionParameter=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedImport=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedLocal=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedObjectAllocation=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedParameter=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedParameterIncludeDocCommentReference=enabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||||
|
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||||
|
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||||
org.eclipse.jdt.core.compiler.release=disabled
|
org.eclipse.jdt.core.compiler.release=disabled
|
||||||
org.eclipse.jdt.core.compiler.source=17
|
org.eclipse.jdt.core.compiler.source=17
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
package Crypter;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
|
@ -1,3 +1,4 @@
|
||||||
|
package Crypter;
|
||||||
|
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
|
@ -1,3 +1,4 @@
|
||||||
|
package Crypter;
|
||||||
|
|
||||||
|
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
|
@ -0,0 +1,21 @@
|
||||||
|
package enumeration;
|
||||||
|
|
||||||
|
|
||||||
|
public class Main {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
|
||||||
|
System.out.println(Planet.values());
|
||||||
|
|
||||||
|
for (Planet planet : Planet.values()) {
|
||||||
|
System.out.printf("%s -> %,.0f km/h%n",
|
||||||
|
planet.name(),
|
||||||
|
planet.bahngeschwindigkeit());
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println(Planet.MERKUR.toString());
|
||||||
|
System.out.println(Planet.MERKUR.name());
|
||||||
|
System.out.println(Planet.JUPITER.toString());
|
||||||
|
System.out.println(Planet.JUPITER.name());
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
package enumeration;
|
||||||
|
|
||||||
|
public enum Operation {
|
||||||
|
|
||||||
|
ADDITION {
|
||||||
|
public double anwenden(double op1, double op2) {
|
||||||
|
return op1 + op2;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
SUBTRAKTION {
|
||||||
|
public double anwenden(double op1, double op2) {
|
||||||
|
return op1 - op2;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
MULTIPLIKATION {
|
||||||
|
public double anwenden(double op1, double op2) {
|
||||||
|
return op1 * op2;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
public abstract double anwenden(double op1, double op2);
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
package enumeration;
|
||||||
|
|
||||||
|
public enum Planet {
|
||||||
|
MERKUR(59e+6, 88), VENUS(108e+6, 225),
|
||||||
|
ERDE(150e+6, 365), MARS(228e+6, 1.9*365),
|
||||||
|
JUPITER(778e+6, 11.9*365), SATURN(1427e+6, 29.5*365),
|
||||||
|
URANUS(2870e+6, 84*365), NEPTUN(4497e+6, 165*365);
|
||||||
|
|
||||||
|
private final double entfernungsonne;
|
||||||
|
private final double umlaufzeit;
|
||||||
|
|
||||||
|
private Planet(double entfernungsonne, double umlaufzeit) {
|
||||||
|
this.entfernungsonne = entfernungsonne;
|
||||||
|
this.umlaufzeit = umlaufzeit;
|
||||||
|
}
|
||||||
|
|
||||||
|
public double bahngeschwindigkeit() {
|
||||||
|
return 2 * entfernungsonne * Math.PI / umlaufzeit / 24;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return name() + " ist der " + (ordinal() + 1) + " Planet im Sonnensystem.";
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
package enumeration;
|
||||||
|
|
||||||
|
public class Rechner {
|
||||||
|
|
||||||
|
public double rechne(double op1, double op2, Operation operation) {
|
||||||
|
return operation.anwenden(op1, op2);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
Rechner r = new Rechner();
|
||||||
|
|
||||||
|
double summe = r.rechne(5, 5, Operation.ADDITION);
|
||||||
|
double differenz = r.rechne(6, 3, Operation.SUBTRAKTION);
|
||||||
|
double produkt = r.rechne(6, 3, Operation.MULTIPLIKATION);
|
||||||
|
|
||||||
|
System.out.printf("%.0f, %.0f, %.0f", summe, differenz, produkt);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
package enumeration;
|
||||||
|
|
||||||
|
public enum Wochentag {
|
||||||
|
MONTAG, DIENSTAG, MITTWOCH, DONNERSTAG, FREITAG, SAMSTAG, SONNTAG;
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,22 @@
|
||||||
|
package generics;
|
||||||
|
|
||||||
|
public class ExtStack<T> extends SimpleStack<T> {
|
||||||
|
|
||||||
|
public ExtStack(int size) {
|
||||||
|
super(size);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* In dieser Methode passiert nichts anderes als die Ausgabe des zuletzt
|
||||||
|
* gesetzten Wertes (in diesem Fall ein String). Das erzeugte Array wurde
|
||||||
|
* üder den Konstruktor ExtStack angelegt, indem die Arraygröße und
|
||||||
|
* der Datentyp in dem Konstruktoraufruf (siehe Mainmethode) übergeben wurde
|
||||||
|
* und der Aufruf an die Superklasse SimpleStack weitergeleitet wurde.
|
||||||
|
*/
|
||||||
|
public T peek() {
|
||||||
|
T wert = pop(); // Hier wird der Wert mit pop() aus dem Array geholt
|
||||||
|
push(wert); // und in die Variable wert geschrieben
|
||||||
|
return wert; // danach erfolgt die Rückmeldung an den Methodenaufruf
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
package generics;
|
||||||
|
|
||||||
|
public class Main {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
|
||||||
|
|
||||||
|
var simplestack1 = new SimpleStack<String>(5);
|
||||||
|
|
||||||
|
simplestack1.push("Hallo");
|
||||||
|
simplestack1.push("das ist ein Beispiel für");
|
||||||
|
simplestack1.push("einen SimpleStack.");
|
||||||
|
simplestack1.push("Logisch wird alles in ");
|
||||||
|
simplestack1.push("verkehrter Reihenfolge ausgegeben.");
|
||||||
|
|
||||||
|
for (int i = simplestack1.getSize(); i > 0 ; i--) {
|
||||||
|
System.out.print(simplestack1.pop() + "| |");
|
||||||
|
}
|
||||||
|
|
||||||
|
var extstack1 = new ExtStack<String>(2);
|
||||||
|
|
||||||
|
extstack1.push("Hallo");
|
||||||
|
extstack1.push("Hello");
|
||||||
|
|
||||||
|
System.out.println(extstack1.peek());
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,39 @@
|
||||||
|
package generics;
|
||||||
|
|
||||||
|
public class SimpleStack<T> {
|
||||||
|
/*
|
||||||
|
* Der Einsatz eines Typ-Parameters hält diese Klasse generisch und
|
||||||
|
* ermöglicht es, dass erst in der Main der Datentyp des Arrays festgelegt
|
||||||
|
* werden kann. Somit ist die generische Klasse in ihrer Implementierung
|
||||||
|
* unabhängig von der Main-Klasse.
|
||||||
|
*/
|
||||||
|
private T[] stack;
|
||||||
|
private int pos;
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
public SimpleStack(int size) {
|
||||||
|
stack = (T[]) new Object[size];
|
||||||
|
pos = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void push(T o) {
|
||||||
|
stack[pos++] = o;
|
||||||
|
}
|
||||||
|
|
||||||
|
public T pop() {
|
||||||
|
return stack[--pos];
|
||||||
|
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
* Dies ist ziemlich schlechter Programmierstiel, da für einen gut
|
||||||
|
* funktionierenden Stack noch weitere Methoden fehlen.
|
||||||
|
* Diese sind zum Beispiel swap(), peek() und clear(). So das es möglich
|
||||||
|
* ist Daten zu Tauschen (swap()), Daten zu löschen (clear()) oder nach
|
||||||
|
* Daten zu suchen (peek())
|
||||||
|
*/
|
||||||
|
|
||||||
|
public int getSize () {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
return pos;
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
package records;
|
||||||
|
|
||||||
|
|
||||||
|
public class Rechteck extends Exception{
|
||||||
|
|
||||||
|
record Rectangle(double laenge, double breite) {
|
||||||
|
public Rectangle {
|
||||||
|
if (laenge <= 0 || breite <= 0) {
|
||||||
|
throw new java.lang.IllegalArgumentException(
|
||||||
|
String.format("Keine 0 oder negative Werte erlaubt."));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
|
||||||
|
Rectangle r = new Rectangle(4.0, 3.0);
|
||||||
|
Rectangle r2 = new Rectangle(1.0, 2.0);
|
||||||
|
|
||||||
|
System.out.println("Fläche: " + r.laenge() * r.breite());
|
||||||
|
System.out.println("Fläche2: " + r2.laenge() * r2.breite());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
package records;
|
||||||
|
|
||||||
|
public final class RechteckOhneRecords {
|
||||||
|
|
||||||
|
private final double laenge;
|
||||||
|
private final double breite;
|
||||||
|
|
||||||
|
public RechteckOhneRecords(double laenge, double breite) {
|
||||||
|
this.laenge = laenge;
|
||||||
|
this.breite = breite;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
RechteckOhneRecords r = new RechteckOhneRecords(4, 3);
|
||||||
|
|
||||||
|
System.out.println("Fläche = " + r.laenge() * r.breite());
|
||||||
|
}
|
||||||
|
|
||||||
|
private double breite() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
return laenge;
|
||||||
|
}
|
||||||
|
|
||||||
|
private double laenge() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
return breite;
|
||||||
|
}
|
||||||
|
}
|
|
@ -5,22 +5,9 @@ import java.util.Random;
|
||||||
/**
|
/**
|
||||||
* Ein einfacher Würfel.
|
* Ein einfacher Würfel.
|
||||||
*/
|
*/
|
||||||
public class Wuerfel {
|
public enum Wuerfel {
|
||||||
|
|
||||||
/** 4-seitiger Würfel. */
|
D4(4), D6(6), D8(8), D10(10), D12(12);
|
||||||
public static final int D4 = 4;
|
|
||||||
|
|
||||||
/** 6-seitiger Würfel. */
|
|
||||||
public static final int D6 = 6;
|
|
||||||
|
|
||||||
/** 8-seitiger Würfel. */
|
|
||||||
public static final int D8 = 8;
|
|
||||||
|
|
||||||
/** 10-seitiger Würfel. */
|
|
||||||
public static final int D10 = 10;
|
|
||||||
|
|
||||||
/** 12-seitiger Würfel. */
|
|
||||||
public static final int D12 = 13;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Zufallszahlengenerator.
|
* Zufallszahlengenerator.
|
||||||
|
@ -37,8 +24,8 @@ public class Wuerfel {
|
||||||
*
|
*
|
||||||
* @param typ Anzahl der Seiten des Würfels.
|
* @param typ Anzahl der Seiten des Würfels.
|
||||||
*/
|
*/
|
||||||
public Wuerfel(int numSides) {
|
private Wuerfel(int nr) {
|
||||||
this.numSides = numSides;
|
this.numSides = nr;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -3,6 +3,7 @@ package pr2.enums.eigene.test;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import pr2.enums.eigene.Wuerfel;
|
import pr2.enums.eigene.Wuerfel;
|
||||||
|
|
||||||
|
|
||||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -13,32 +14,32 @@ public class WuerfelTest {
|
||||||
/**
|
/**
|
||||||
* Anzahl der Durchläufe (Gesetz der großen Zahl!).
|
* Anzahl der Durchläufe (Gesetz der großen Zahl!).
|
||||||
*/
|
*/
|
||||||
private static final int RUNS = 10000000;
|
private static final int RUNS = 10000;
|
||||||
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testFairnessD4() {
|
void testFairnessD4() {
|
||||||
internalTestFairness(new Wuerfel(Wuerfel.D4), 2.5);
|
internalTestFairness(Wuerfel.D4, 2.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testFairnessD6() {
|
void testFairnessD6() {
|
||||||
internalTestFairness(new Wuerfel(Wuerfel.D6), 3.5);
|
internalTestFairness(Wuerfel.D6, 3.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testFairnessD8() {
|
void testFairnessD8() {
|
||||||
internalTestFairness(new Wuerfel(Wuerfel.D8), 4.5);
|
internalTestFairness(Wuerfel.D8, 4.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testFairnessD10() {
|
void testFairnessD10() {
|
||||||
internalTestFairness(new Wuerfel(Wuerfel.D10), 5.5);
|
internalTestFairness(Wuerfel.D10, 5.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testFairnessD12() {
|
void testFairnessD12() {
|
||||||
internalTestFairness(new Wuerfel(Wuerfel.D12), 6.5);
|
internalTestFairness(Wuerfel.D12, 6.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -2,4 +2,29 @@ package pr2.enums.filme;
|
||||||
|
|
||||||
public enum LieblingsFilme {
|
public enum LieblingsFilme {
|
||||||
|
|
||||||
|
FILM1("The Last Boy Scout", "Tony Scott", 10),
|
||||||
|
FILM2("Per Anhalter durch die Galaxy", "Garth Jennings", 8),
|
||||||
|
FILM3("Die Bombe fliegt", "Tom Bussmann", 9);
|
||||||
|
|
||||||
|
private final String title;
|
||||||
|
private final String regie;
|
||||||
|
private final int rating;
|
||||||
|
|
||||||
|
|
||||||
|
private LieblingsFilme(String title, String regie, int rating) {
|
||||||
|
this.title = title;
|
||||||
|
this.regie = regie;
|
||||||
|
this.rating = rating;
|
||||||
}
|
}
|
||||||
|
@Override
|
||||||
|
public String toString(){
|
||||||
|
return "Filmtitel: " + title + "\nRegie: " + regie + "\nDer Film erhält " + rating + " Punkte von mir.\n";
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String getFilm(LieblingsFilme film) {
|
||||||
|
return film.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,17 @@ package pr2.enums.filme;
|
||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
// TODO: Alle Filme ausgeben
|
|
||||||
|
|
||||||
|
|
||||||
|
// System.out.println(LieblingsFilme.FILM1);
|
||||||
|
// System.out.println(LieblingsFilme.FILM2);
|
||||||
|
// System.out.println(LieblingsFilme.FILM3);
|
||||||
|
|
||||||
|
for (LieblingsFilme filme : LieblingsFilme.values()) {
|
||||||
|
System.out.println(filme.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println(LieblingsFilme.getFilm(LieblingsFilme.FILM2));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,27 @@
|
||||||
package pr2.enums.schnick;
|
package pr2.enums.schnick;
|
||||||
|
|
||||||
public enum Move {
|
public enum Move {
|
||||||
|
|
||||||
|
STEIN, PAPIER, SCHERE;
|
||||||
|
|
||||||
|
public static boolean checkMove(String c, String s) {
|
||||||
|
|
||||||
|
String move = c + s;
|
||||||
|
|
||||||
|
if (move == "rp"){
|
||||||
|
return false;
|
||||||
|
} else if (move == "pr") {
|
||||||
|
return true;
|
||||||
|
} else if (move == "rs") {
|
||||||
|
return false;
|
||||||
|
} else if (move == "sr") {
|
||||||
|
return true;
|
||||||
|
} else if (move == "ps") {
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
return true; // sp
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,4 +8,68 @@ import java.util.Scanner;
|
||||||
*/
|
*/
|
||||||
public class SchnickSchnackSchnuck {
|
public class SchnickSchnackSchnuck {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
|
||||||
|
String c = "";
|
||||||
|
String s = "";
|
||||||
|
int spielerKonto = 0;
|
||||||
|
int computerKonto = 0;
|
||||||
|
int int_rand = 0;
|
||||||
|
Random rand = new Random();
|
||||||
|
|
||||||
|
for (int i = 1; i <= 3; i++) {
|
||||||
|
|
||||||
|
System.out.println("Start Runde: " + i);
|
||||||
|
|
||||||
|
|
||||||
|
for (int j = 0; j < 1000000; j++) {
|
||||||
|
|
||||||
|
int_rand = rand.nextInt(3000);
|
||||||
|
}
|
||||||
|
if (int_rand < 1000) {
|
||||||
|
c = "r";
|
||||||
|
} else if (int_rand == 2000) {
|
||||||
|
c = "p";
|
||||||
|
} else {
|
||||||
|
c = "s";
|
||||||
|
}
|
||||||
|
|
||||||
|
Scanner eingabe = new Scanner(System.in);
|
||||||
|
|
||||||
|
System.out.println("Der Spieler trifft seine Auswahl: r (STEIN)" + " p (PAPIER) s (SCHERE) ");
|
||||||
|
s = eingabe.next();
|
||||||
|
|
||||||
|
Boolean rückgabe = Move.checkMove(c, s);
|
||||||
|
|
||||||
|
if (rückgabe == false) {
|
||||||
|
spielerKonto++;
|
||||||
|
} else if (rückgabe){
|
||||||
|
computerKonto++;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (spielerKonto > computerKonto) {
|
||||||
|
System.out.println(
|
||||||
|
"Der Spieler hat " + spielerKonto + " der " + "Computer hat " + computerKonto + " Punkte.");
|
||||||
|
} else if (computerKonto > spielerKonto) {
|
||||||
|
System.out.println(
|
||||||
|
"Der Computer hat " + computerKonto + " der " + "Spieler hat " + spielerKonto + " Punkte.");
|
||||||
|
} else {
|
||||||
|
System.out.println("Beide habe bisher " + computerKonto + " Punkte.");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println("Spielende: ");
|
||||||
|
System.out.println("Der Spieler hat " + spielerKonto + " Punkte.");
|
||||||
|
System.out.println("Der Computer hat " + computerKonto + " Punkte.");
|
||||||
|
if (spielerKonto == computerKonto) {
|
||||||
|
System.out.println("Das Spiel endet unentschieden.");
|
||||||
|
} else if (spielerKonto > computerKonto) {
|
||||||
|
System.out.println("Der Spieler hat gewonnen.");
|
||||||
|
} else {
|
||||||
|
System.out.println("Der Computer hat gewonnen.");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,22 @@
|
||||||
package pr2.enums.singleton;
|
package pr2.enums.singleton;
|
||||||
|
|
||||||
enum MyEnum {
|
public enum MyEnum {
|
||||||
A,
|
A(100),
|
||||||
B,
|
B(200),
|
||||||
C;
|
C(300);
|
||||||
|
|
||||||
|
private final int a;
|
||||||
|
|
||||||
|
private MyEnum(int a) {
|
||||||
|
this.a = a;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getZahl() {
|
||||||
|
return a;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String toZahl() {
|
||||||
|
return " " + a + " ";
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,41 @@
|
||||||
package pr2.enums.singleton;
|
package pr2.enums.singleton;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public class SingletonBeweis {
|
public class SingletonBeweis {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
// TODO: Singleton-Eigenschaft zeigen
|
|
||||||
|
System.out.println(MyEnum.A);
|
||||||
|
System.out.println(MyEnum.B);
|
||||||
|
System.out.println(MyEnum.C);
|
||||||
|
|
||||||
|
MyEnum zahl = MyEnum.A;
|
||||||
|
System.out.println(zahl.getZahl());
|
||||||
|
System.out.println(MyEnum.A.getZahl() == 100);
|
||||||
|
|
||||||
|
|
||||||
|
MyEnum a = MyEnum.A;
|
||||||
|
MyEnum b = MyEnum.B;
|
||||||
|
MyEnum c = MyEnum.C;
|
||||||
|
|
||||||
|
|
||||||
|
System.out.println("Ausgabe über String:");
|
||||||
|
System.out.println(a.toZahl());
|
||||||
|
System.out.println(b.toZahl());
|
||||||
|
System.out.println(c.toZahl());
|
||||||
|
System.out.println("Ausgabe über int:");
|
||||||
|
System.out.println(a.getZahl());
|
||||||
|
System.out.println(b.getZahl());
|
||||||
|
System.out.println(c.getZahl());
|
||||||
|
|
||||||
|
System.out.println("MyEnum.values() gibt die Referenz des erstellten "
|
||||||
|
+ "Arrays zurück. Die Enum-Aufzählung funktioniert nur mit "
|
||||||
|
+ "einer forEach-Schleife.");
|
||||||
|
System.out.println(MyEnum.values());
|
||||||
|
|
||||||
|
for (MyEnum einmal : MyEnum.values()) {
|
||||||
|
System.out.printf("%2s", einmal);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@ package pr2.generics.einfach;
|
||||||
/**
|
/**
|
||||||
* Eine einfache, verkettete Liste.
|
* Eine einfache, verkettete Liste.
|
||||||
*/
|
*/
|
||||||
public class Liste {
|
public class Liste<T> {
|
||||||
|
|
||||||
/** Referenz auf den ersten Knoten. */
|
/** Referenz auf den ersten Knoten. */
|
||||||
private ListeNode first;
|
private ListeNode first;
|
||||||
|
@ -19,11 +19,12 @@ public class Liste {
|
||||||
/**
|
/**
|
||||||
* Fügt ein neues Element an das Ende der Liste an.
|
* Fügt ein neues Element an das Ende der Liste an.
|
||||||
*
|
*
|
||||||
* @param data das Element
|
* @param i das Element
|
||||||
*/
|
*/
|
||||||
public void add(Object data) {
|
public void add(String i) {
|
||||||
|
|
||||||
ListeNode nextNode = new ListeNode(data);
|
@SuppressWarnings("unchecked")
|
||||||
|
ListeNode nextNode = new ListeNode(i);
|
||||||
|
|
||||||
if (current == null) {
|
if (current == null) {
|
||||||
// Liste komplett leer
|
// Liste komplett leer
|
||||||
|
@ -31,7 +32,7 @@ public class Liste {
|
||||||
current = nextNode;
|
current = nextNode;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
current.next = nextNode;
|
current.setNext(nextNode);
|
||||||
current = nextNode;
|
current = nextNode;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -42,17 +43,18 @@ public class Liste {
|
||||||
* @param index Index, beginnend bei 0.
|
* @param index Index, beginnend bei 0.
|
||||||
* @return Das Element oder {@code null}, wenn es nicht gefunden wurde.
|
* @return Das Element oder {@code null}, wenn es nicht gefunden wurde.
|
||||||
*/
|
*/
|
||||||
public Object get(int index) {
|
@SuppressWarnings("unchecked")
|
||||||
|
public String get(int index) {
|
||||||
int count = 0;
|
int count = 0;
|
||||||
ListeNode node = first;
|
T node = (T) first;
|
||||||
|
|
||||||
while ((node != null) && (count < index)) {
|
while ((node != null) && (count < index)) {
|
||||||
node = node.next;
|
node = ((ListeNode<T>) node).getNext();
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((count == index) && (node != null)) {
|
if ((count == index) && (node != null)) {
|
||||||
return node.data;
|
return ((ListeNode<T>) node).getData();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// index does not exist
|
// index does not exist
|
||||||
|
@ -75,13 +77,18 @@ public class Liste {
|
||||||
*/
|
*/
|
||||||
public int size() {
|
public int size() {
|
||||||
int count = 0;
|
int count = 0;
|
||||||
ListeNode node = first;
|
T node = (T) first;
|
||||||
|
|
||||||
while (node != null) {
|
while (node != null) {
|
||||||
node = node.next;
|
node = (T) ((ListeNode) node).getNext();
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void add(int i) {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,20 +3,31 @@ package pr2.generics.einfach;
|
||||||
/**
|
/**
|
||||||
* Interne Repräsentation der Knoten in der Liste.
|
* Interne Repräsentation der Knoten in der Liste.
|
||||||
*/
|
*/
|
||||||
class ListeNode {
|
class ListeNode<E> {
|
||||||
|
|
||||||
/** Daten. */
|
/** Daten. */
|
||||||
Object data;
|
String data;
|
||||||
|
|
||||||
/** Referenz auf den nächsten Knoten. */
|
/** Referenz auf den nächsten Knoten. */
|
||||||
ListeNode next;
|
E next;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Legt einen neuen Knoten an.
|
* Legt einen neuen Knoten an.
|
||||||
*
|
*
|
||||||
* @param data daten, die gespeichert werden
|
* @param data daten, die gespeichert werden
|
||||||
*/
|
*/
|
||||||
ListeNode(Object data) {
|
protected ListeNode(String data) {
|
||||||
|
this.setData(data);
|
||||||
|
}
|
||||||
|
public E getNext() {
|
||||||
|
return next;
|
||||||
|
}
|
||||||
|
public void setNext(E next) {
|
||||||
|
this.next = next;
|
||||||
|
}
|
||||||
|
public void setData(String data) {
|
||||||
this.data = data;
|
this.data = data;
|
||||||
}
|
}
|
||||||
|
public String getData() {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,7 +22,7 @@ public class ListeTest {
|
||||||
|
|
||||||
l.add( "Hallo");
|
l.add( "Hallo");
|
||||||
assertEquals(1, l.size());
|
assertEquals(1, l.size());
|
||||||
l.add("Hugo");
|
l.add( "");
|
||||||
assertEquals(2, l.size());
|
assertEquals(2, l.size());
|
||||||
l.add( "Peter");
|
l.add( "Peter");
|
||||||
l.add( "Alfons");
|
l.add( "Alfons");
|
||||||
|
@ -37,7 +37,7 @@ public class ListeTest {
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
void testGet() {
|
void testGet() {
|
||||||
Liste l = new Liste();
|
Liste<String> l = new Liste<String>();
|
||||||
l.add("Hallo");
|
l.add("Hallo");
|
||||||
l.add("Hugo");
|
l.add("Hugo");
|
||||||
l.add("Peter");
|
l.add("Peter");
|
||||||
|
|
|
@ -2,17 +2,17 @@ package pr2.generics.pair;
|
||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
// TODO: Einkommentieren
|
|
||||||
// var note1 = new Pair<String, Integer>("Peter", 1);
|
var note1 = new Pair<String, Integer>("Peter", 1);
|
||||||
// var note2 = new Pair<String, Integer>("Frank", 3);
|
var note2 = new Pair<String, Integer>("Frank", 3);
|
||||||
// var note3 = new Pair<String, Integer>("Sabine", 1);
|
var note3 = new Pair<String, Integer>("Sabine", 1);
|
||||||
//
|
|
||||||
// var name = new Pair<String, String>("Peter", "Meier");
|
var name = new Pair<String, String>("Peter", "Meier");
|
||||||
//
|
|
||||||
// System.out.printf("%s:%d\n", note1.getFirst(), note1.getSecond());
|
System.out.printf("%s:%d\n", note1.getFirst(), note1.getSecond());
|
||||||
// System.out.printf("%s:%d\n", note2.getFirst(), note1.getSecond());
|
System.out.printf("%s:%d\n", note2.getFirst(), note1.getSecond());
|
||||||
// System.out.printf("%s:%d\n", note3.getFirst(), note1.getSecond());
|
System.out.printf("%s:%d\n", note3.getFirst(), note1.getSecond());
|
||||||
//
|
|
||||||
// System.out.printf("%s %s\n", name.getFirst(), name.getSecond());
|
System.out.printf("%s %s\n", name.getFirst(), name.getSecond());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,21 @@
|
||||||
package pr2.generics.pair;
|
package pr2.generics.pair;
|
||||||
|
|
||||||
public class Pair {
|
public class Pair<K, V> {
|
||||||
|
|
||||||
|
private K data1;
|
||||||
|
private V data2;
|
||||||
|
|
||||||
|
public Pair(K data1, V data2) {
|
||||||
|
this.data1 = data1;
|
||||||
|
this.data2 = data2;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public K getFirst() {
|
||||||
|
return data1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public V getSecond() {
|
||||||
|
return data2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -4,17 +4,15 @@ package pr2.intro.coding_standard;
|
||||||
* Klasse dient als Beispiel für den Coding-Standard und die Namenskonventionen
|
* Klasse dient als Beispiel für den Coding-Standard und die Namenskonventionen
|
||||||
* bei Java-Programmen.
|
* bei Java-Programmen.
|
||||||
*/
|
*/
|
||||||
public
|
public class CodingStandard {
|
||||||
class
|
|
||||||
CodingStandard {
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Konstante, die dem Rest der Welt etwas mitteilen soll.
|
* Konstante, die dem Rest der Welt etwas mitteilen soll.
|
||||||
*/
|
*/
|
||||||
public final static int konstanteMitTOLLEMWert = 3;
|
public final static int KONSTANTE_MIT_TOLLEM_WERT = 3;
|
||||||
|
|
||||||
private int ERSTES_Feld;
|
private int erstesFeld;
|
||||||
private double ZWEITES_Feld;
|
private double zweitesFeld;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Legt eine neue Instanz an.
|
* Legt eine neue Instanz an.
|
||||||
|
@ -22,9 +20,10 @@ CodingStandard {
|
||||||
* Erstes_Feld: das erste Feld.
|
* Erstes_Feld: das erste Feld.
|
||||||
* ZweitesFeld: das zweite Feld.
|
* ZweitesFeld: das zweite Feld.
|
||||||
*/
|
*/
|
||||||
public CodingStandard(int Erstes_Feld, double ZweitesFeld)
|
public CodingStandard(int erstesFeld, double zweitesFeld)
|
||||||
{
|
{
|
||||||
this.ERSTES_Feld = Erstes_Feld; this.ZWEITES_Feld = ZweitesFeld;
|
this.erstesFeld = erstesFeld;
|
||||||
|
this.zweitesFeld = zweitesFeld;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -33,18 +32,17 @@ CodingStandard {
|
||||||
* parameter: Eingabewert für die Methode.
|
* parameter: Eingabewert für die Methode.
|
||||||
* gibt einen Wert abhängig von {@code parameter} zurück.
|
* gibt einen Wert abhängig von {@code parameter} zurück.
|
||||||
*/
|
*/
|
||||||
public int
|
public int methodeDieEtwasTut(int parameter)
|
||||||
Methode_Die_Was_Tut(int Parameter)
|
|
||||||
{
|
{
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
if (Parameter > konstanteMitTOLLEMWert)
|
if (parameter > KONSTANTE_MIT_TOLLEM_WERT)
|
||||||
result = 12;
|
result = 12;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
result = 13; }
|
result = 13; }
|
||||||
|
|
||||||
ERSTES_Feld = result; ZWEITES_Feld = 2 * result;
|
erstesFeld = result; zweitesFeld = 2 * result;
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue