digitalmars.D.learn - Super
- Ty Tower (10/10) May 07 2008 what does this do ?
- Extrawurst (3/14) May 07 2008 it calls the constructor of the inherited class with a parameter null.
what does this do ?
super(null)
seen in program thus
public class MyWindow : ApplicationWindow
{
this()
{
addMenuBar;
super(null);
}
May 07 2008
it calls the constructor of the inherited class with a parameter null.
like: ApplicationWindow.this(null);
Ty Tower schrieb:
what does this do ?
super(null)
seen in program thus
public class MyWindow : ApplicationWindow
{
this()
{
addMenuBar;
super(null);
}
May 07 2008








Extrawurst <spam extrawurst.org>