|
What this is
Other links
The source codepackage p; abstract class A { /** * @param a an a * @param b bee * @return the number * @see #m(int, String[][][]) */ public abstract int m(int a, String[] b[][]); } class B extends A { public int m(int number, String[] b[][]) { return number + 0; } } class C extends B { /** * @param a an a * @param b bee */ public int m(int a, String[] strings[][]) { return a + 17; } } |
... 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.