2014-02-04 16:44:03 +00:00
|
|
|
|
Algorithmus-Probleme:
|
|
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|
|
- return in while oder if
|
|
|
|
|
- <20>berladene Methoden mit gleicher Parameteranzahl
|
|
|
|
|
- Methodenaufruf in if-Statement
|
|
|
|
|
- Generic-Methoden addElement und elementAt funktionieren nicht:
|
|
|
|
|
|
2015-04-22 19:40:22 +00:00
|
|
|
|
public getValue(Menge<String> a){
|
2014-02-04 16:44:03 +00:00
|
|
|
|
String x;
|
|
|
|
|
|
|
|
|
|
a.addElement(x);
|
|
|
|
|
return x;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Diese Methode funktioniert, wenn man die Deklaration des Vektors wegl<67>sst
|
|
|
|
|
|
|
|
|
|
oder...
|
|
|
|
|
|
|
|
|
|
public getValue(a,String x, y){
|
|
|
|
|
a.addElement(x);
|
|
|
|
|
a.addElement(y);
|
|
|
|
|
return(y);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- Irgendein Problem mit boolean:
|
|
|
|
|
|
|
|
|
|
public boolean simple2(){
|
|
|
|
|
return(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public simple3(){
|
|
|
|
|
return(simple2());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Leeres Resultset kommt zurueck!
|
|
|
|
|
|
|
|
|
|
- Multiclass.java:
|
|
|
|
|
|
|
|
|
|
public class Timo extends Holzherr {
|
|
|
|
|
public test2(){
|
|
|
|
|
return("Hallo");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
public class Holzherr{
|
|
|
|
|
public test1(){
|
|
|
|
|
return(1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class TestCase{
|
|
|
|
|
|
|
|
|
|
public test(par){
|
|
|
|
|
return(par.test2());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Java-Parser-Probleme:
|
|
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
|
|
- Kommentare funktionieren nicht
|
|
|
|
|
- System.out....
|
|
|
|
|
- "hallo nr. "+1 geht nicht
|
|
|
|
|
- bytecodegenerierung buggy!
|
|
|
|
|
- Arrays werden vom Parser nicht erkannt!
|
|
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
|