1.Java program Development steps:
1.Use a text editor to write java code to a file with the extension Java.
2.Call the Compilation tool Javac.exe to compile the Java source file, and build the name of the extension class bytecode file ( intermediate Language ).
3.Call the Run tool Java.exe to interpret the compiled bytecode File.
2. Java program operating mechanism
650) this.width=650; "src=" Http://s1.51cto.com/wyfs02/M01/86/17/wKiom1e0Uxmjs0RTAACu9KDd82M428.png-wh_500x0-wm_3 -wmp_4-s_2309428631.png "title=" image 1.png "alt=" wkiom1e0uxmjs0rtaacu9kdd82m428.png-wh_50 "/>
compile : Javac file name . file suffix name
run : Java class name
my summary: Java program composition:java source file , Byte-code File .
3. Structure ofJava source program
650) this.width=650; "src=" Http://s4.51cto.com/wyfs02/M00/86/17/wKioL1e0U3bxUejtAACchCWjMXg920.jpg-wh_500x0-wm_3 -wmp_4-s_137321368.jpg "title=" java program structure. jpg "alt=" wkiol1e0u3bxuejtaacchcwjmxg920.jpg-wh_50 "/>
Java Learning Note note--4, The first Java program