Java Examples
Sun certification level tutorial and examples Organized by topic.
Friday, February 27, 2009
Anonymous inner class declared in method arguments
package
innerclass;
class
Test1{
public static void
main(String arg[])
{
new
Thread(
new
Runnable()
{
public void
run()
{
System.out.println("run");
}
}).start();
}
}
output:
run
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment