Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Java Question (Inb4 trolls)

Name: Anonymous 2012-03-20 11:01

Will the following code work in Java? I have a feeling it should, but it refuses to compile, saying that X has no such method getText().


class X
{
    //class body
}

class main
{
    public static void main(String[] args)
    {
        X x = new X() { public String getText() { return "asdf"; } }; System.out.println(x.getText());
    }
}

Name: Anonymous 2012-03-20 12:57

Read: Anonymous Classes, function overloading

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List