69 lines
1.2 KiB
Plaintext
Executable File
69 lines
1.2 KiB
Plaintext
Executable File
Algorithmus-Probleme:
|
||
||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||
- return in while oder if
|
||
- <20>berladene Methoden mit gleicher Parameteranzahl
|
||
- Methodenaufruf in if-Statement
|
||
- Generic-Methoden addElement und elementAt funktionieren nicht:
|
||
|
||
public getValue(Vector<String> a){
|
||
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!
|
||
|||||||||||||||||||||||||||||||||||||||||||||||||||| |