michael aron

Greenhorn
+ Follow
since Jan 30, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by michael aron

if class was not an object, wouldn't object extend class instead of the other way around?
23 years ago
got it! Thanks, everyone...
23 years ago
I'm not understanding, I figured if you explicitly call the constructor it would be more efficient than having Java say "oh yea I need to call the String constructor now".
23 years ago
I read that when you use the shortcut:
String sString = "bla blah blah";
that the String constructor is called... if this is the case would it be more efficient to code:
String sString = new String("blah blah blah");
Thanks
23 years ago
I always read that the main method must be defined as public static void... however I am able to compile and run programs with this method defined at any visibility level such as private. I am also able to declare my main method as final. Why is this the case, is it my JVM? What are the advantages and disadvantages of changing these?
23 years ago