about java

Hai,I am new to java.I dont know how to create object in my programing
[91 byte] By [azhar_sundeva] at [2007-11-26 20:14:45]
# 1
You are creating an object each time you use the keyword 'new'Kaj
kajbja at 2007-7-9 23:21:08 > top of Java-index,Java Essentials,New To Java...
# 2
thank you for your replyBut i cannt understand. Can you give sample code for creating object
azhar_sundeva at 2007-7-9 23:21:08 > top of Java-index,Java Essentials,New To Java...
# 3
Object object = new Object();but really, if you're still at this stage, your best bet is to read some tutorials. you'll never learn this fundamental stuff asking questions in a forum
georgemca at 2007-7-9 23:21:08 > top of Java-index,Java Essentials,New To Java...
# 4
This is the general syntax to create object or instanceclass_name object_name=new class_name();here new is the Java keyword which allocates memory to the object u have created.
meetandtalkraghu@yahoo.coma at 2007-7-9 23:21:08 > top of Java-index,Java Essentials,New To Java...
# 5
Thank you for your reply..I will read tutorials for learn java. Can you give free tutorials for learing java
azhar_sundeva at 2007-7-9 23:21:08 > top of Java-index,Java Essentials,New To Java...
# 6
http://java.sun.com/docs/books/tutorial/reallybigindex.html
Martin@Stricenta at 2007-7-9 23:21:08 > top of Java-index,Java Essentials,New To Java...
# 7
> Thank you for your reply..> > I will read tutorials for learn java. Can you give> free tutorials for learing javafind them yourself. a good programmer is a self-sufficient, resourceful one
georgemca at 2007-7-9 23:21:08 > top of Java-index,Java Essentials,New To Java...
# 8
Hi , just read the book " Java 2 Complete reference by "Herbert Schieldt" thats a good book...
meetandtalkraghu@yahoo.coma at 2007-7-9 23:21:08 > top of Java-index,Java Essentials,New To Java...
# 9
> Hi , just read the book " Java 2 Complete reference> by "Herbert Schieldt" thats a good book...that book's a pile of cr@p, by all accounts
georgemca at 2007-7-9 23:21:08 > top of Java-index,Java Essentials,New To Java...
# 10
> Hi , just read the book " Java 2 Complete reference> by "Herbert Schieldt" thats a good book...I would suggest Thinking in Java by Bruce Eckel.
qUesT_foR_knOwLeDgea at 2007-7-9 23:21:08 > top of Java-index,Java Essentials,New To Java...
# 11
Head First Java gets good reviews around here: http://www.amazon.com/Head-First-Java-Kathy-Sierra/dp/0596009208
DrLaszloJamfa at 2007-7-9 23:21:08 > top of Java-index,Java Essentials,New To Java...