This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes Object data type Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Object data type" Watch "Object data type" New topic
Author

Object data type

Sasha Hernandez
Greenhorn

Joined: Oct 14, 2003
Posts: 21
Is there a data type called, "Object"? If so, do you know where I can get documentation on it. None of my Java books mention it.
jyothsna kumari
Ranch Hand

Joined: Jul 21, 2003
Posts: 108
i think u have,
go and check the link
http://java.sun.com/products/jdk/1.2/docs/api/java/lang/Class.html
Amit KumarS
Ranch Hand

Joined: Oct 10, 2003
Posts: 100
hiii,
Object is a class in Java and this is automatically the base class for all the classes...
u can refer JavaDoc for this... u can download it from sun's website from Here
or u can online check object classes defination at Object Class
hope this helps you
Thanks
Amit


****************************<br />In 24 hrs Earth rotates once on its Axis.
robert chen
Greenhorn

Joined: Oct 19, 2003
Posts: 5
Hi
I am new in here.
When a child class product a object,it will call upward it's father class.
Amd his father will call upward it's father class ,too.
Keep on going to the top class(java.lang.Object).
Because of all classes of Java,if it no inheritance other class,it will
automatically inheritance the class of java.lang.Object.
I am sorry.My English is poor.
[ October 26, 2003: Message edited by: robert chen ]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Object data type
 
Similar Threads
Casting in array
What is primitive data type?
Store Object in Database
classes
Difference between ArrayList<int> and ArrayList<Integer>