|
What this is
Other links
The source codepackage p; public class Foo { Bar.FooBar bb; static class Bar { static class FooBar { static void foo() { // <--- invoke here } } } Bar.FooBar getFooBar() { return null; } { Bar.FooBar b= new Bar.FooBar(); // not ok: b.foo(); getFooBar().foo(); this.bb.foo(); bb.foo(); // ok: Foo.Bar.FooBar.foo(); p.Foo.Bar.FooBar.foo(); Bar.FooBar.foo(); } } |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.