Java Tour (2) Programming Resources

xiaoxiao2021-03-06  102

Yesterday, I changed this "Java program design tutorial (fifth edition)" (DEITEL father and son), I was very good at the time, and the fifth edition was still wrong, so I didn't carefully select it, I have time at night. When you look at it again, I found that this book translator has reached 24 people, and six, and then the other people of the proceedings, the surname has reached around 10 people. It is obviously a big family, and there are 6 still 4 surnames. The lineup of light makes me dare to hold too much about their translation quality, and this book is also the first edition in China. First printing, only 4,000 books, of course, I still look quite rich. Various programming suggestions and reminders and quantity examples look well, but I am worried that it has a problem with my translation. I checked it online today. It is more suitable for beginners to have "Java core technology I: principle" And "TEACH YOURSELF JAVA in 21 Days". The latter found an English version of the e-book, looking very good, searching in the evening, there is no e-book in the former, um, it is best to Chinese.

The following is a better Java website (reprinted from "STAR821116 (self-improvement, virtual virtue)" of the netizen's post) Chinese: / * The following two Java websites are good * / 2.http://www.chinajavaworld. Com3.http://www.java-cn.com4.http: //www.china-pub.com// Buy Book Before you go to here 5.http://www.codestudy.comnglish: 1.HTTP : //www-900.ibm.com/developerWorks/cn/index.shtml2.http: //gceclub.sun.com.cn3.http://www.fawcette.com/javapro4.http: //javaranch.com

The JDK "J2SDK1.4.1_02" version is installed, and the environment variable is set. Let's take another editor.

The editor temporarily uses Edit Plus2, and to learn more about other IDEs in the future, there are several good settings for Edit Plus2. As follows: In Tools-> Parameter Settings -> Configuring User Tools 1. Add Tools (Add Apps) Menu Text: Compile Java Program Program: "Your JDK Installation Path" /bin/javac.exe Parameters: File Name Initial Directory: Directory 2. Add Tool (Add Application) Menu Text: Run Java Program Program: "Your JDK Installation Path" /bin/java.exe Parameters: File Name (Free Extension) Initial Directory: File Directory

Toolbar names can be added casually, such as Debug Java Program, then in the Tools drop-down menu, you will see two options for Compile Java Program and Run Java Program, you can use Ctrl 1 compile and CTRL 2 running programs.

Of course, it is more convenient to set these two tools to the toolbar.

Before doing the above work, you must understand how to compile and run the Java program under the command prompt. (Good before I have been practicing)

OK. I edited my first "Hello, World!" Java program. And run smoothly. Ha ha. A good start. --------------- I am a split line ------------ Public Class HelloWorld {public static void main (string [] args) {system.out. Println ("Hello, World!");}} --------------- I am also dividing lines ----------- Continued: Just use working hours to secretly After reading a few pages of "TEACH YOURSELF JAVA in 21 Days" e-book, TNND, the English is quite hard. From the predecessor, I found that the e-book was actually out of 96 years. The book relied on JDK is actually Java's earliest beta version, completely collapsed ~

转载请注明原文地址:https://www.9cbs.com/read-96942.html

New Post(0)