|
What this is
Other links
The source code
package p;
interface A{
/** method m javadoc comment */
void m();
/** field I javadoc comment */
int I= 9;
/* method m1 regular comment */
void m1();
/* field i1 regular comment */
int I1= 9;
// method m2 line comment
void m2();
// field i2 line comment
int I2= 9;
void m4(); /* method m4 regular comment */
int I4= 9; /* field i4 regular comment */
void m5(); // method m5 line comment
int I5= 9; // field i5 line comment
}
|
| ... 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.