Nếu chúng ta đã
biết rành cách viết JavaScript
Programs thì sẽ hiểu rất nhanh những Java Programs căn bản nầy.
Mỗi variable phải được declared
bằng chữ String nếu variable là chữ (keyword).
String firstName="Xao";
Mỗi variable phải được declared
bằng chữ int nếu variable có value là một con số nguyên (integer)
int a =12 ;
Mỗi variable phải được declared
bằng chữ double nếu variable có value là một con số decimal
double x =41.25
---------------------------------------------
2 .1 - public class Test{
public static void main(String[]args){
int a,b,c,add,multiplication,square ; // integer
double x,y,adding ;// decimal
a=10 ;
b=5 ;
c=6 ;
add = a+b ;
multiplication = c*a ;
square = 5*5 ;
x=2.5 ;
y=7.5 ;
adding=x+y ;
System.out.println(add +"\n "+ multiplication+"\n "+ square+"\n"+adding);
}}
Result : success
Compilation time: 0.72 sec, absolute running time: 0.13 sec, cpu time: 0.09 sec, memory peak: 18 Mb, absolute service time: 0.86 sec
15
60
25
10.0
-------------------
2.2 - public class StringVariables{
public static void main(String[]args){
String firstName="Xao";
String familyName="Ke";
System.out.println(firstName+ " "+familyName);
}}
Result: Success
Compilation time: 0.72 sec, absolute running time: 0.14 sec, cpu time: 0.06 sec, memory peak: 18 Mb,absolute service time: 0.87 sec
Xao Ke
---------------------
2.3 - public class Calculation{
public static void main(String[] args){
int firstNumber, secondNumber, thirdNumber, answer;
//Ở đây dùng chữ int vì variable có value là một con số integer
firstNumber=150;
secondNumber=50;
thirdNumber=25;
answer=(firstNumber-secondNumber)+thirdNumber;
System.out.println("Total="+ answer);
}}
Result : Success
Compilation time: 0.83 sec, absolute running time: 0.14 sec,cpu time: 0.06 sec, memory peak: 18 Mb, absolute service time: 0.98 sec
Total=125
-----------------
2.4 - public class concatStrings{
public static void main(String[] args){
String str1 = "Hello";
String str2 = "Mr BAXAO XIKE IN CALIFORNIA";
String concatenatedString = str1+" "+str2;
System.out.println("The output of concatenated string is"+" " +concatenatedString);
}}
Result : Success
Compilation time: 0.83 sec, absolute running time: 0.15 sec, cpu time: 0.06 sec,memory peak: 18 Mb, absolute service time: 0.99 sec
The output of concatenated string is Hello Mr BAXAO XIKE IN CALIFORNIA
-------------
2.5 - class Namelist{
public static void main(String[] args){
String[] name = {"Xao Ke",
"Ba Xao", "Henry Duong"};
// In ra những tên
chứa trong String array name
for ( int i = 0; i < name.length; i++ ){
System.out.println(
name[i] );}
} }
Result : success
Compilation time: 1.24 sec, absolute running time: 0.14 sec, cpu time: 0.06 sec, memory peak: 18 Mb, absolute service time: 1.38 sec
Xao Ke
Ba Xao
Henry Duong
Ghi chú.
Trong method main(String[] args) có parameter là data type thuộc lọai array of String
args là variables của main method.
args[0] là first element of this array.
args[1] là second element of this array.
args.length() là the length of
the array
----------------
Java Programs dùng
parseInt()
2.6.1 - class
ParseInt{
public static void main(String[] args){
String a =
"14";
String b = "36";
System.out.println( a + b );
// a + b = "14" +
"36" = "1436"
// Because of concatenate when used on strings
System.out.println(Integer.parseInt(a) + Integer.parseInt(b));
//
Integer.parseInt(a) + Integer.parseInt(b)
// = Integer.parseInt("14") +
Integer.parseInt("36")
// = 14 + 36 = 50
}}
Result : success
Compilation time:
0.93 sec, absolute running time: 0.13 sec, cpu time: 0.06 sec, memory peak: 18
Mb, absolute service time: 1.08 sec
1436
50
----------------------------------
2.6.2 - public class ParseDouble{
public static void main(String[] args){
String a = "12.34";
String b = "56.78";
System.out.println( a + b );
// a + b = "12.34" + "56.78" = "12.3456.78"
// Because of concatenate when used on strings
System.out.println( Double.parseDouble(a) + Double.parseDouble(b) );
// Double.parseDouble(a) + Double.parseDouble(b)
// = Double.parseDouble("12.34") + Double.parseDouble("56.78")
// = 12.34 + 56.78 = 69.12
}}
Result: success
Compilation time: 0.82 sec, absolute running time: 0.13 sec, cpu time: 0.06 sec,memory peak: 18 Mb,absolute service time: 0.96 sec
12.3456.78
69.12
--------------
2.7 - public class Condition{
public static void main(String[] args){
boolean age = false;// if true, the 1 st print will display.
if (age){
System.out.println("You are under 25 years old");
}
else{
System.out.println("How old are you ?");}
}}
Result : Success
Compilation time: 0.72 sec, absolute running time: 0.15 sec, cpu time: 0.06 sec, memory peak: 16 Mb, absolute service time: 0.88 sec
How old are you ?
-----------------------------------------------
2.8-CÔNG, TRỪ, NHÂN, CHIA và
MODULUS
public class Arithmetic{
public static void main(String[]args){
int i = 25;
int j = 20;
double x = 20.5;
double y = 4.5;
System.out.println("Adding");
System.out.println(" i + j = " + (i + j));
System.out.println(" x + y = " + (x + y));
System.out.println("Subtracting");
System.out.println(" i - j = " + (i - j));
System.out.println(" x - y = " + (x - y));
System.out.println("Multiplying");
System.out.println(" i * j = " + (i * j));
System.out.println(" x * y = " + (x * y));
System.out.println("Dividing");
System.out.println(" i / j = " + (i / j));
System.out.println(" x / y = " + (x / y));
// the remainder resulting from dividing numbers
System.out.println("Modulus");
System.out.println(" i % j = " + (i % j));
System.out.println(" x % y = " + (x % y));
}
}
Result: Success
Compilation time: 0.83 sec, absolute running time: 0.13 sec, cpu time: 0.06 sec,
memory peak: 18 Mb, absolute service time: 0.97 sec
Adding
i + j = 45
x + y = 25.0
Subtracting
i - j = 5
x - y = 16.0
Multiplying
i * j = 500
x * y = 92.25
Dividing
i / j = 1
x / y = 4.555555555555555
Modulus
i % j = 5
x % y = 2.5
Permanent link: http://rextester.com/DURV4047
-----------------------------------
III- TẠO THÊM NHIỀU METHODS MỚI TRONG JAVA PROGRAM.
Tự tạo nhiều methods theo ý muốn trong class nhưng nhớ cứ mỗi method phải tạo instance cho class sau main method
An instance is an object created in memory. We create an object and instantiate it in order to use it.
Tạo thêm
một method call() nên phải
tạo một object cho class Rextester
3-1- class Rextester{
private void call(){
System.out.println(" World");}
public static void main(String[] args){
System.out.println("Hello");
Rextester
object= new Rextester();
object.call();
}}
Compilation time: 0.82 sec, absolute running time: 0.14 sec,
cpu time: 0.06 sec, memory peak: 18 Mb, absolute service time: 0.98 sec
Hello
World
------------------------------------------
3-2 - class Rextester{
public static void main(String[] args){
staticMethod();// this calls static method
Rextester object = new Rextester();// create an object for class Rextester
object.nonStaticMethod();} // this calls non static method
static void staticMethod(){
System.out.println("We do not create an object to call this staticMethod");}
void nonStaticMethod(){
System.out.println("We must create an object to call this nonStaticMethod");}
}}
Result : Success
We do not create an object to call this staticMethod
We must create an object to call this nonStaticMethod
-----------------
Tạo thêm 2
methods là call() và display() nên phải
tạo thêm 2 objects là xaoke và baxao cho
class Rextester.
3-3 - class Rextester{
private void call(){
System.out.println("My Friends Around The World.I Love You All");}
private void display(){
System.out.println("Do You Want to
Learn Java Programming");}
public static void
main(String[] args){
System.out.println("Hello");
Rextester xaoke=new Rextester();
xaoke.call();
Rextester baxao=new Rextester();
baxao.display();
}}
Result : Success
Compilation time:
0.84 sec, absolute running time: 0.13 sec, cpu time: 0.06 sec, memory peak: 16
Mb, absolute service time: 0.98 sec
Hello
My Friends Around
The World.I Love You All
Do You Want to
Learn Java Programming
--------------------------------------------------
Methods được tạo thêm nếu có viết static kèm theo như thí dụ dưới
đây thì không cần tạo object cho class nữa để tiết kiệm memory.
3.4-class Test1{
private static void print(){
System.out.println("Hello Friends!I love you all.");}
public static void main(String args[]){
print();}
}
SUCCESS.
Compilation time: 1.06 sec, absolute running time: 0.14 sec,
cpu time: 0.08 sec, memory peak: 18 Mb,absolute service time: 1.21 sec
Hello Friends!I love you all.
-----------------------------------------------
3.5-class Test2{
private static void print(){
System.out.println("Hello Friends!I love you all.");}
private static void display(){
System.out.println("Because we are human beings created by one Father.");}
public static void main(String args[]){
print();display();}
}
SUCCESS.
Compilation time: 0.74 sec, absolute
running time: 0.13 sec,
cpu time: 0.06 sec, memory peak: 18
Mb, absolute service time: 0.88 sec
Hello Friends!I love you all.
Because we are human beings created by one Father.
-----------------------------------------------------------
UPDATE August-27-2015
Xử dụng Java để viết những programs thông dụng.
Pano Maistrou and Henry Duong have been friends since 1987." ;
" THEY WERE WORKING TOGETHER AT SUNDANCE GRAPHICS INC IN S.J CAPISTRANO,CALIFORNIA,USA SO MANY YEARS.\nBRANDON LANE IS THE CEO"
;
System.out.println("Now Pano already reached the retired age but he loves to keep his job. Henry already retired in order to do the programmer work at home.");
System.out.println("This Java Program is written by Henry.\nBEST WISHES.");
}
output.
Compilation time: 0.72 sec, absolute running time: 0.13 sec,
cpu time: 0.07 sec, memory peak: 20 Mb, absolute service time: 0.86 sec
2015
HELLO OUR DEAR FRIENDS !
Pano Maistrou and Henry Duong have been friends since 1987.
THEY WERE WORKING TOGETHER AT SUNDANCE GRAPHICS INC IN S.J CAPISTRANO,CALIFORNIA,USA SO MANY YEARS.
BRANDON LANE IS THE CEO.
Now Pano already reached the retired age but he loves to keep his job.Henry already retired in order to do the programmer work at home.
This Java Program is written by Henry.
BEST WISHES.
Permanent link: http://rextester.com/EDFKM86097
2-Tổ chức cơ quan.
2.1-Viện Quốc Gia Định Chuẩn.
class
Rextester{
static {
System.out.println("VIỆN QUỐC GIA ĐỊNH CHUẨN VNCH.\nTRỤ SỞ ĐƯỜNG HÀN THUYÊN SAIGON TRƯỚC 30-4-1975.");
System.out.println("");
System.out.println("**************************************"); }
public static void main(String args[]){
System.out.format("%50s\n","Năm
1967 Viện Định Chuẩn được thành lập trực thuộc Bộ Công Kỹ Nghệ của chính phủ
Việt Nam Cộng Hòa. Năm 1972 Viện được đổi tên là VIÊN QUÔC GIA ĐINH CHUÂN,một
cơ quan công lập tự trị có tư cách pháp nhân trực thuộc Bộ Thương Mại và Kỹ
Nghệ.\n Tính đến ngày 30-4-1975 ,Viện đã ban hành 120 tiêu chuẩn quốc gia. \n");
System.out.format("%-20s
\n","TỔ CHỨC VÀ NHÂN VIÊN");
System.out.format("%-20s
\n","-------------------");
System.out.println ("I- Văn Phòng Tổng Giám Đốc.\n Nguyễn Sĩ Bạch ,TrươngThị Quan - Phí Minh Tâm ( TGĐ )
- 3 người\n");
System.out.println("II- Văn Phòng Phát Triển Định Chuẩn.\nLê Văn Ban, Lê Văn Bình, Nguyễn thị Đào,
Đinh Nguyên Trình Giang, Nguyễn Mỹ Hiệp, Nguyễn Thị Hồng , Phạm Thư
Hùng ,Đặng Thị Liên Hương , Lê Dư Khánh
( Phụ tá GĐ ) , Lê Tấn Kiệt ( G Đ) , Lý Thị Liên, Đỗ Thị Hảo Như, Nguyễn Văn
Nữa , Nguyễn Văn Quới, Nguyễn Quốc Quyền, Hà Văn Tốt , Võ thị Thảo
,Vũ Văn Thượng , Nguyễn Đức Tiện, Cao Ngọc Tú ,Tôn Thất Tuệ ,Tôn Nữ
Mộng Tuý, Đoàn Thị Tuý Tùng, Phan
Đình Vàng , Phùng Văn Xuân, Hồng
Thị Phi Yến - 26 người .\n");
System.out.println("III- Văn Phòng Trung Tâm
Khảo Cứu & Trắc Nghiệm\nTrần Đình Ánh, Vũ Văn Ban , Bùi Văn
Cảnh , Mai Xuân Cảnh , Nguyễn Văn Còn , Trần Quốc Dũng ,Nguyễn Hữu Độ ( G Đ ), Lương Mỹ Hậu , Dương Hiễn
Hẹ ,Trần văn Hòan, Nguyễn Long Hội , Bùi Tường Loan, Nguyễn
Thị Mười , Đào Trung Nam , Đặng Khải Nghĩa , Đặng Trung Ngôn , Vũ Văn
Ninh , Lê Văn Quỳnh ( Phụ tá GĐ ) , Tăng
Văn Sanh, Nguyễn Tấn Tài, Nguyễn Hoa Tâm , Đinh Văn Tân , Quản Thanh Thuỷ
, Trương Thị Như Thuỷ , Nguyễn Võ Tiếp , Nguyễn Văn Tĩnh ,Hà Văn Tuệ ,
Trần Thị Vi - 28 người.\n");
System.out.println("");
}
}
Output. Permanent link: http://rextester.com/DBVCN94989
2.2-Trung Tâm Khảo Sát Kỹ Thuật Quân Nhu QLVNCH
còn tiếp