G
giob
Could someone examine this code I made while studying and explain what
it does and why do you think is possible to generate this kind of code?
Shouldn't it give a compilation error ?
class Frankenstein{
static Frankenstein x = Frankenstein.getOneConn();
static Frankenstein.getOneConn() {
return x;
}
}
thanks
it does and why do you think is possible to generate this kind of code?
Shouldn't it give a compilation error ?
class Frankenstein{
static Frankenstein x = Frankenstein.getOneConn();
static Frankenstein.getOneConn() {
return x;
}
}
thanks