Blue keywords,Green comment,Red breakpoint,my life is also colorful
public
class
Artist
{
String[] others;

/** */
/**
Creates a new instance of Artist
*/
public
Artist()
{
}
public
Artist(String name,String
others)
{

for
(String other : others)
{
System.out.println(other);
}
this
.others
=
others;
}
public
void
wildestMethod(Object
objs)
{
//
this method will accept any arguments
}
public
static
void
main(String[] args)
{
Artist artist
=
new
Artist(
"
You
"
,
"
1
"
,
"
2
"
);
artist.wildestMethod(
1
,
3.5
,
"
AA
"
,
new
Artist());
}
}
posts - 29, comments - 3, trackbacks - 0, articles - 0
Copyright © BlueO2