Jump to content
xisto Community
unys

I Want To Start Java From A-0

Recommended Posts

Hello everyBody,I am very interested to learn that programming language which jave, however, I just hear about it and I made some search but that seems to me very complicated, so I want some one to leads me to the right way to start that beautiful programming languge. Please tell me what are the avilable free software that I can download and some pdf books if you can. I will be very greatful, if you help.thank you for reading.

Share this post


Link to post
Share on other sites

Well if you are looking to learn JavaScript I'd recommend going here, http://www.w3schools.com/js/default.asp That'll start to teach you things from the very beginning by example and also show you the syntax. Once you have the basics down, if you need help for writing a certain script, look for a tutorial on how to do it here http://www.pixel2life.com/tutorials/javascript/ You may even find some basic tutorials to help you learn how to do things there.

For regular Java I can only point you to some basic tutorials at Pixel2Life. http://www.pixel2life.com/tutorials/java_development/ That will only really help you write certain scripts though.

Share this post


Link to post
Share on other sites

Hello,

Thank you for the answer, but I am sorry I don't want to learn jave script. I want language JAVA programmation. I want like some thing to start a software which I can learn how to program and the use it or compile it, seeing it at the screen

 

Well if you are looking to learn JavaScript I'd recommend going here, http://www.w3schools.com/js/default.asp That'll start to teach you things from the very beginning by example and also show you the syntax. Once you have the basics down, if you need help for writing a certain script, look for a tutorial on how to do it here http://www.pixel2life.com/tutorials/javascript/ You may even find some basic tutorials to help you learn how to do things there.

 

For regular Java I can only point you to some basic tutorials at Pixel2Life. http://www.pixel2life.com/tutorials/java_development/ That will only really help you write certain scripts though.

Share this post


Link to post
Share on other sites

Well I found lots of tutorial sites like the link I posted in my first post. But, I think this link may be what you are looking for. https://smallbusiness.yahoo.com/ It currently has 20 lessons and another under construction. Although, I think it'd probably be better to go and take a class somewhere or find a book at the library and use that to learn Java or buy a book or E-book instead. Hopefully this site will help you out some, I'm not sure how detailed it is.

Share this post


Link to post
Share on other sites

Hello.Thank You man I got it, I will start getting the basic..... whoever, I want some think that I can play the source codes with, like a java software. do have anything to tell me about please.

Share this post


Link to post
Share on other sites

unys.. to start with.. let me tell you.. there's NO link between java and javascript..except that the syntax is a bit similar..and there r two ways to go.. webCoder or webDesigner.. like this page is designed by a webDesigner.. whenevr, we click 'FastREPLY'.. the dialog box get opens on the same page, this is known as client side coding.. and is a JavaScript Effect.. but,, when we click 'Add Reply' after submitting our reply.. the Server Side Code comes to Life.. It puts this reply in a database or xml file.. this is real java..so, choose first.though, its really your choice and your interest.. i recommend you go for WebCoding.. so, reply.. and there are many people around here who will suggest you best books than anyone else..

Share this post


Link to post
Share on other sites

Dear Unys,

To learn any language you have to have some basic idea what programing Language is. I guess you have some Idea what programing Language is. Now let me tell you what Java is. Java is a Object Oriented Programing[OOP]. Now you can ask me what is OOP then I suggests you to visit the link en.wikipedia.org/wiki/Object-oriented_programming In java programing everything consider as Object. To create a object we wrote "class Object"[Object is the parents of all class, not need to thing right now]. Like if you think about a Car. In Java programing you want to construct a Car class. then you wrote:

class Car{  }
Now think about what Car is. What are its attributes and what are the functions. For Car the attributes are brand, door, capacity and the methods are doorOpen/Close, forward, backword.[Obviously there are many other attributes and functions(we make it simple)]. so now if you want to create a Car class then you have to write like that way.

class Car{  String brand;  String door;  int capacity;  bool doorStatus();// it will return whether the door is open[true] or close[false]  bool carStarus(); // it will return whether the car goes forward or back ward.  }
This is just a simple over view of what java is. In my openion Java is a very nice programing language. If you know Java you may not need other language. It have multiple feature. You better borrow a book and start reading from the beginning. I read a book name "Beginning Java2" by "Ivor Horton's" publications WROX. This is a nice book for the novice. Now if want to know more then I will describe.

 

Notice from rvalkass:

Please use the correct BBCodes, such as the CODE tag (for any code you type) and URL tag (for linking to other sites). You can see all the available BBCodes here.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.