JavaScript 类是其原型继承系统的语法糖。 ES6 中引入的类提供了一种清晰且结构化的方式来定义对象并在 JavaScript 中使用继承,使代码更具可读性和组织性。
您可以使用 class 关键字定义一个类。
示例:
class Person { constructor(name, age) { this.name = name; this.age = age; } greet() { console.log(`Hello, my name is ${this.name} and I am ${this.age} years old.`); } } const person1 = new Person("Alice", 25); person1.greet(); // Hello, my name is Alice and I am 25 years old.
示例:
class Car { constructor(brand) { this.brand = brand; } } const myCar = new Car("Toyota"); console.log(myCar.brand); // Toyota
示例:
class Animal { sound() { console.log("Animal makes a sound"); } } const dog = new Animal(); dog.sound(); // Animal makes a sound
示例:
class MathUtils { static add(a, b) { return a + b; } } console.log(MathUtils.add(3, 5)); // 8
示例:
class Rectangle { constructor(width, height) { this.width = width; this.height = height; } get area() { return this.width * this.height; } } const rect = new Rectangle(10, 5); console.log(rect.area); // 50
继承允许一个类使用extends关键字从另一个类获取属性和方法。
示例:
class Animal { constructor(name) { this.name = name; } speak() { console.log(`${this.name} makes a sound.`); } } class Dog extends Animal { speak() { console.log(`${this.name} barks.`); } } const dog = new Dog("Rex"); dog.speak(); // Rex barks.
私有字段和方法,ES2022中引入,以#开头,不能在类外访问。
示例:
class BankAccount { #balance; constructor(initialBalance) { this.#balance = initialBalance; } deposit(amount) { this.#balance += amount; console.log(`Deposited: ${amount}`); } getBalance() { return this.#balance; } } const account = new BankAccount(100); account.deposit(50); // Deposited: 50 console.log(account.getBalance()); // 150 // console.log(account.#balance); // Error: Private field '#balance' must be declared in an enclosing class
类也可以定义为表达式并分配给变量。
示例:
const Rectangle = class { constructor(width, height) { this.width = width; this.height = height; } getArea() { return this.width * this.height; } }; const rect = new Rectangle(10, 5); console.log(rect.getArea()); // 50
虽然类是语法糖,但您仍然可以将它们与 JavaScript 基于原型的继承结合起来。
示例:
class Person {} Person.prototype.sayHello = function () { console.log("Hello!"); }; const person = new Person(); person.sayHello(); // Hello!
封装:
使用私有字段来保护敏感数据。
可重用性:
利用继承在多个类之间重用代码。
避免过于复杂:
仅在必要时使用类。简单的对象或函数可能足以完成小任务。
一致性:
遵循方法和属性的命名约定以提高可读性。
JavaScript 类提供了一种干净有效的方法来管理 JavaScript 中的面向对象编程。凭借继承、静态方法、私有字段和封装等功能,它们提供了强大的工具来构建和管理代码,从而更轻松地构建可扩展和可维护的应用程序。
嗨,我是 Abhay Singh Kathayat!
我是一名全栈开发人员,拥有前端和后端技术方面的专业知识。我使用各种编程语言和框架来构建高效、可扩展且用户友好的应用程序。
请随时通过我的商务电子邮件与我联系:kaashshorts28@gmail.com。
以上是掌握 JavaScript 类:现代 OOP 完整指南的详细内容。更多信息请关注PHP中文网其他相关文章!