Rama SManian

Greenhorn
+ Follow
since Jul 28, 2004
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 Rama SManian

Thank you guys.
18 years ago
Hello members,

I am planning to study for certification and i am wondering whether should i go for SCJA or SCJP as my first certification. Sun seems to have changed a lot of exam objectives and they have a new one called "Sun Certified Programmer for the Java 2 Platform, Standard Edition 5.0 (CX-310-055) ".

I have done a bit of Java during college projects, but i don't have any work experience in Java. Should i go for the SCJA or SCJP?

Thanks a lot
Best
Rama
18 years ago
constructor cannot return anything. so you can safely define
example(){}

however you can overload a constructor
example(String name){}
19 years ago
Hello friends!!

This is something that stumped me. When we create an object of a class say A

class A{

}

This class is an empty class. When i create an object of this class what would be in its state ?
( no variables for state and no methods for behavior). Since java.lang.object will be called , its methods will be a part of the object behavior.

So is anything added in a java object's state by default by the JVM..

any pointers..article links will be appreciated.

Thanks
RKS
19 years ago