MACROMEDIA FLEX-FLEX ACTIONSCRIPT LANGUAGE Reference page 181

Actionscript language reference
Table of Contents

Advertisement

function o():Void;
}
class D implements Ia, Ib
{
function k():Number {return 15;}
function n(x:Number):Number {return x*x;}
function o():Void {trace("o");}
}
// script file
mvar = new D();
trace(mvar.k());
trace(mvar.n(7));
trace(mvar.o());
interface Ic extends Ia
{
function p():Void;
}
class E implements Ib, Ic
{
function k():Number {return 25;}
function n(x:Number):Number {return x+5;}
function o():Void {trace("o");}
function p():Void {trace("p");}
}
See also
class, extends,
// 15
// 49
// "o"
implements
interface
181

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the FLEX-FLEX ACTIONSCRIPT LANGUAGE and is the answer not in the manual?

Subscribe to Our Youtube Channel

This manual is also suitable for:

Flex

Table of Contents