Bài tập java #4 : hướng đối tượng trong java

bài tập lập trình java , học java đơn giản
HuanBuiThanh
Bài 5 – Lập trình OOP (Hướng đối tượng trong java)

class
Đây là một class, class này có hai property (thuộc tính) là name và age

PHP Code:
public class Person{
                
String name;
                
int age;
}  


Đây là một class, class này ngoài property còn có constructor (khởi tạo) của class đó

PHP Code:
public class Person{
                
String name;
                
int age;
                public 
Person(String name)
                {
                                
this.name name;
                }
}  


Trong cái constructor này hãy lưu ý một điều, đó là biến this. Biến this có nghĩa là bản thân cái class đó (ở đây là class Person).
Trong class Person có một property là age, câu this.age = age có nghĩa là cái thuộc tính age của class Person sẽ nhận giá trị ở cái đối số age do constructor Person(int age) đưa vào.
Lưu ý là mọi class đều có sẵn ít nhất một constructor không có đối số.
Đây là một class, class này ngoài property, constructor còn có một behavior (hành vi)

PHP Code:
public class Person{
                
String name;
                
int age;
                public 
Person(int age)
                {
                                
this.age age;
                }
                public 
void Nhap()
                {
                                
nameonsole.readLine("Nhap ho ten:");
                }
}  


Khi ta viết câu lệnh sau
Person personOne = new Person(12);
Thì ta đã tạo ra một instance (thể hiện) là personOne của class Person 

Getting Info...

Đăng nhận xét

Cảm ơn bạn đã quan tâm và gửi nhận xét tại
http://huanbuithanh.blogspot.com
hãy ghé thăm blog hàng ngày để được cập nhật những thủ thuật mới nhất nhé . thân ái !
Cookie Consent
We serve cookies on this site to analyze traffic, remember your preferences, and optimize your experience.
Oops!
It seems there is something wrong with your internet connection. Please connect to the internet and start browsing again.
AdBlock Detected!
We have detected that you are using adblocking plugin in your browser.
The revenue we earn by the advertisements is used to manage this website, we request you to whitelist our website in your adblocking plugin.
Site is Blocked
Sorry! This site is not available in your country.