Thêm một bài viết JavaScript khác trên jsB@nk để cho bạn hiểu hơn về tính kế thừa trong ngôn ngữ lập trình JavaScript, vui lòng vào trang chi tiết để xem thêm.
Các bài viết liên quan khác:
- Khái niệm cơ bản về thừa kế trong JavaScript
- 5 kĩ thuật kế thừa trong JavaScript nên nắm vững
- Demo
- Phóng to
- Tải lại
- Cửa sổ mới
Miễn phí web hosting 1 năm đầu tại iPage
Nếu bạn vẫn còn đang tìm kiếm một nhà cung cấp hosting đáng tin cậy, tại sao không dành chút thời gian để thử với iPage, chỉ với không quá 40.000 VNĐ/tháng, nhưng bạn sẽ được khuyến mãi kèm với quà tặng trị giá trên 10.000.0000 VNĐ nếu thanh toán cho 24 tháng ~ 900.000 VNĐ?
Có trên 1 triệu khách hàng hiện tại của iPage đã & đang hài lòng với dịch vụ, tuyệt đối chắc chắn bạn cũng sẽ hài lòng giống họ! Quan trọng hơn, khi đăng ký sử dụng web hosting tại iPage thông qua sự giới thiệu của chúng tôi, bạn sẽ được hoàn trả lại toàn bộ số tiền bạn đã sử dụng để mua web hosting tại iPage. Wow, thật tuyệt vời! Bạn không phải tốn bất kì chi phí nào mà vẫn có thể sử dụng miễn phí web hosting chất lượng cao tại iPage trong 12 tháng đầu tiên. Chỉ cần nói chúng tôi biết tài khoản của bạn sau khi đăng ký.
Nếu muốn tìm hiểu thêm về ưu / nhược điểm của iPage, bạn hãy đọc đánh giá của ChọnHostViệt.com nhé!
If you have written a bit of JavaScript, you certainly have heard the word prototype.
Prototype is not only a JavaScript library, but also a key concept of
JavaScript, which we will explore in depth today, without making your
head spin.
(Almost) every object in JavaScript (where everything is an object, even functions) has an internal prototype
property, which points in fact to a prototype object. When a method or
property is missing on an object, it is searched on its prototype, and
if not found on the prototype's prototype, and so on. the last object of
the chain usually is Object.prototype.
Sometimes the prototype is exposed with the __proto__ property, although this is not part of the standard. According to the EcmaScript specification, it is a private property.
What you access with MyClass.prototype is instead a different thing. When you instance an object with new MyClass(), the object will its __proto__ set to MyClass.prototype; but MyClass.prototype is not in the prototype chain of MyClass. Its __proto__ instead is likely to be Function.prototype, since classes in JavaScript are defined as functions.
Only functions in JavaScript have this public property, which in fact can only be used for the valorization of the internal __proto__ of objects created by these functions.
A cool (but also dangerous) thing is that a reference is kept to MyClass.prototype, so you can add methods that work on *this* to MyClass.prototype later, and they will show up on every instance of MyClass, being shared by all of them.
Of course, since MyClass.prototype is an object just like everything else, its chain ultimately falls back to Object.prototype.
To implement classical inheritance, you have to leverage the prototype chains. Since properties and methods are searched on an object's __proto__, if you want it to inherit from another object you have to modify the prototype of its class (you can't modify __proto__).
Each instance of Dog now will inherit member fields from the new Animal() and consequently from Object.prototype.
This prototype chain can be technically extended as long as you want, each time by setting the prototype of the subclass equal to an object of the parent class. Of course from you should be wary of endless hierarchies.
This is the full code implementing these examples.
01.
TestCase(
"playing with object prototypes in JavaScript"
, {
02.
"test object literals have natural prototype"
:
function
() {
03.
var
anObject = {};
04.
assertEquals(Object.prototype.toString, anObject.toString);
05.
},
06.
"test constructors have public prototype property"
:
function
() {
07.
function
MyClass() {};
08.
assertNotUndefined(MyClass.prototype);
09.
},
10.
"test objects do not have public prototype property"
:
function
() {
11.
var
anObject = {};
12.
assertUndefined(anObject.prototype);
13.
},
14.
"test objects created with a constructor has constructor property"
:
function
() {
15.
function
MyClass() {};
16.
var
anObject =
new
MyClass();
17.
assertTrue(anObject
instanceof
MyClass);
18.
assertEquals(MyClass, anObject.constructor);
19.
assertEquals(MyClass.prototype, anObject.__proto__);
20.
},
21.
"test objects created with a constructor inherit from Object"
:
function
() {
22.
function
MyClass() {};
23.
var
anObject =
new
MyClass();
24.
assertEquals(Object.prototype.toString, anObject.toString);
25.
},
26.
"test the prototype chain goes from instance to constructor"
:
function
() {
27.
function
MyClass() {};
28.
var
anObject =
new
MyClass();
29.
MyClass.prototype.doSomething =
function
() {};
30.
assertEquals(MyClass.prototype.doSomething, anObject.doSomething);
31.
},
32.
"test the prototype chain goes also to Object"
:
function
() {
33.
function
MyClass() {};
34.
var
anObject =
new
MyClass();
35.
Object.prototype.doSomethingElse =
function
() {};
36.
assertEquals(Object.prototype.doSomethingElse, anObject.doSomethingElse);
37.
},
38.
"test inheritance can be built by substituting prototypes with an object of the parent class"
:
function
() {
39.
function
Animal() {};
40.
Animal.prototype.eat =
function
() {
return
'Yum'
; };
41.
function
Dog() {};
42.
Dog.prototype =
new
Animal();
43.
Dog.prototype.bark =
function
() {
return
'Arf'
; };
44.
Dog.prototype.constructor = Dog;
45.
var
lassie =
new
Dog();
46.
assertTrue(lassie
instanceof
Dog);
47.
assertEquals(
'Arf'
, lassie.bark());
48.
assertTrue(lassie
instanceof
Animal);
49.
assertEquals(
'Yum'
, lassie.eat());
50.
assertEquals(Dog.prototype, lassie.__proto__);
51.
assertEquals(Animal.prototype, Dog.prototype.__proto__);
52.
},
53.
"test
N levels of inheritance can be obtained by making each prototype an
object which properties are inferred from parent prototype"
:
function
() {
54.
function
establishInheritance(childClass, parentClass) {
55.
childClass.prototype =
new
parentClass();
56.
childClass.prototype.constructor = childClass;
57.
};
58.
59.
function
Animal() {};
60.
Animal.prototype.eat =
function
() {
return
'Yum'
; };
61.
62.
function
Dog() {};
63.
establishInheritance(Dog, Animal);
64.
Dog.prototype.bark =
function
() {
return
'Arf'
; };
65.
66.
function
Collie() {};
67.
establishInheritance(Collie, Dog);
68.
69.
var
lassie =
new
Collie();
70.
71.
assertTrue(lassie
instanceof
Collie);
72.
assertTrue(lassie
instanceof
Dog);
73.
assertTrue(lassie
instanceof
Animal);
74.
// inherits up to upmost class
75.
assertEquals(
'Yum'
, lassie.eat());
76.
77.
assertEquals(Collie.prototype, lassie.__proto__);
78.
assertEquals(Dog.prototype, Collie.prototype.__proto__);
79.
assertEquals(Animal.prototype, Dog.prototype.__proto__);
80.
}
81.
});
82.
- Lượt gửi (0)
- Mới
Tạo video doanh nghiệp của bạn bằng AI chỉ với giọng nói hoặc văn bản
chatGPTaz.com
Nói chuyện với ChatGPT bằng ngôn ngữ mẹ đẻ của bạn
Ứng dụng AI Video
Ứng dụng video AI MIỄN PHÍ đầu tiên của bạn
Deepfake Video
Deepfake AI Video Maker
Deepfake
Deepfake AI Video Maker
AI Deep Fake
Deepfake AI Video Maker
AIvidio
AI Video Mobile Solutions
AIvideos
AI Video Platform & Solutions
AIvedio
AI Video App Maker
Faceswap AI trực tuyến
Đổi mặt Video, Ảnh & GIF ngay lập tức với Công cụ AI mạnh mẽ - Faceswap AI Trực tuyến MIỄN PHÍ
Faceswap AI trực tuyến
Đổi mặt Video, Ảnh & GIF ngay lập tức với Công cụ AI mạnh mẽ - Faceswap AI Trực tuyến MIỄN PHÍ
Temu tặng $500 cho người dùng mới
Claim Free Temu $500 Credit via Affiliate & Influencer Program
Tín dụng quảng cáo TikTok miễn phí
Làm chủ quảng cáo TikTok cho hoạt động tiếp thị doanh nghiệp của bạn
Dall-E-OpenAI.com
Tự động tạo ra hình ảnh sáng tạo với AI
chatGPT4.win
Nói chuyện với ChatGPT bằng ngôn ngữ mẹ đẻ của bạn
Sản phẩm AI đầu tiên của Elon Musk - Grok/UN.com
Nói chuyện với Grok AI Chatbot bằng ngôn ngữ của bạn
Công cụ.win
Mở trung tâm công cụ miễn phí để mọi người sử dụng với hàng trăm công cụ
GateIO.gomymobi.com
Airdrop miễn phí để nhận, chia sẻ lên đến 150.000 đô la cho mỗi dự án
iPhoneKer.com
Tiết kiệm tới 630$ khi mua iPhone 16 mới
Mua Robot Tesla Optimus
Đặt mua Tesla Bot: Robot Optimus Gen 2 ngay hôm nay với giá dưới 20.000 đô la