Quote:
Originally Posted by Twinny
|
Can I still do something like
PHP Code:
g = new Gangsta();
gP = g.newGangstasParadise();
... please?
EDIT:
And I really would think something like this would work
PHP Code:
private tVar = n; // noone can see
protected tVar = n; // read only
public tVar = n; // All rights; is this by default if nothing is said.
// even could have
static tVar = n; // Cannot be changed -- I thought there was a way to do this, but I can't remember it.