GenericTypeVarTest PlugIn #159
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
In diesem Fall kann man in GTVTest2 für var2 folgendes einsetzen, was nicht stimmt
class GTVTest{
GTVTest2 var;
methode(){
return var.var2;
}
}
class GTVTest2{
GTV2 GTV292063029 var2;
}
Problem behoben. Ergebnis ist nun:
class GTVTest{
GTVTest2 var;
java.lang.String methode(){
return var.var2;
}
}
class GTVTest2{
GTV2 var2;
}