Compiling the source
-
Microsof visual studio: Là môi trường tích hợp chính (Integrated Development Environment (IDE) được phát triển từ Microsoft. Đây là một sản phẩm phần mềm máy tính có công dụng giúp đỡ các lập trình viên trong việc phát triển phần mềm. Các môi trường phát triển hợp nhất thường bao gồm: Một trình soạn thảo mã (source code editor): dùng để viết mã. Trình biên dịch (compiler) và/hoặc trình thông dịch (interpreter). Công cụ xây dựng tự động: khi sử dụng sẽ biên dịch (hoặc thông dịch) mã nguồn, thực hiện liên kết và có thể chạy chương trình một...
14p ninhvanthe 02-03-2013 154 29 Download
-
Outline: Classes, Working with objects, Attributes, methods, and access control, Constructors. Readings: Java how to program, chapter 3, 8. A Java program is a collection of objects. Each class is specified in one source file (file name is the same with class name), Every line of code you write in Java must be inside a class (not counting import directives), Increase modularity, Easier to modified code, shorter compile time.
13p googlebest 16-11-2010 122 8 Download