Where can an object be instantiated and assigned inside a class? i.e does the assignment have to take place inside one of the class methods?
public class Foo{
Bar b1 = new Bar();
Bar b2;
void Foo(){
b2 = new Bar();
}
}
Is b1 a valid instantiation?
Foo()is not a constructor for the class, is a method. A constructor must not declare a return type. – Óscar López Aug 18 '12 at 19:36Foo()is not a constructor, but a method, and it will compile just fine. – Óscar López Aug 18 '12 at 19:39