JavaScript - 静态方法



什么是静态方法?

JavaScript 中的静态方法使用static关键字后跟方法名来定义。您可以通过将类名作为引用而不是类的实例来执行静态方法

静态方法的主要好处是它可以用来创建一个实用程序函数,该函数不需要类的实例即可执行。例如,Math对象包含各种静态方法,我们可以直接通过Math类调用它们。

此外,您可以使用静态方法将所有相关方法添加到单个命名空间下。此外,由于内存优化,静态方法比常规类方法具有更好的性能。

在以下语法中,我们在名为Table的类中定义了一个名为getSize()的静态方法:

class Table {
	static getSize() { // Static method
		return "10 x 10";
	}
}
Table.getSize(); // Static method invocation

在上面的语法中,getSize()是一个静态方法。我们使用类名来执行getSize()方法。

示例

让我们借助一些不同用例的示例来了解 JavaScript 静态方法:

示例:静态方法

在下面的示例中,printSize()是一个静态方法,而getSize()是table类中的常规方法。您可以看到printSize()方法是使用table类名调用的,而getSize()方法是使用类实例执行的。

因此,类可以同时包含静态方法和非静态方法。

<html>
<body>
	<p id = "demo"> </p>
	<script>
		const output = document.getElementById("demo");

		class Table {
			static printSize() {
				return "The size of the table is: 20 x 20 <br>";
			}

			getColor() {
				return "Black";
			}
		}

		output.innerHTML = Table.printSize(); // Static method execution
		const tableObj = new Table();
		output.innerHTML += "The color of the table is: " + tableObj.getColor();
	</script>
</body>
</html>

输出

The size of the table is: 20 x 20
The color of the table is: Black

单个类还可以包含多个静态方法。

示例:多个静态方法

在下面的代码中,table类包含printSize()getSize()静态方法。这两种方法都是通过将类名作为引用来执行的。

<html>
<body>
	<p id = "output"> </p>
	<script>
		class Table {
			static printSize() {
				return "The size of the table is 20 x 20 <br>";
			}

			static getColor() {
				return "The color of the table is Pink";
			}
		}

		document.getElementById("output").innerHTML = 
		Table.printSize() + "br" +
		Table.getColor();
	</script>
</body>
</html>

输出

The size of the table is 20 x 20
brThe color of the table is Pink

单个类可以包含多个同名的静态方法。当您执行同名的静态方法时,它将执行最后一个方法。

示例:同名静态方法

在下面的示例中,table类包含重复的printSize()方法。在输出中,您可以观察到代码执行了第二个printSize()方法。

<html>
<body>
	<p id = "output"> </p>
	<script>
		class Table {
			static printSize() {
				return"The size of the table is: 20 x 20 <br>";
			}

			static printSize() {
				return "The size of the table is: 30 x 30 <br>";
			}
		}
		document.getElementById("output").innerHTML = Table.printSize(); // Static method execution
	</script>
</body>
</html>

输出

The size of the table is: 30 x 30

您也可以在构造函数中执行类的静态方法。您可以使用this关键字后跟构造函数关键字后跟静态方法名来在构造函数中执行静态方法。

示例:在构造函数中执行静态方法

在下面的示例中,Num类包含getSqrt()静态方法。我们在构造函数中执行了getSqrt()方法。

每当您创建一个新的Num类对象时,它都会将数字的平方根存储在类的'sqrt'属性中。

<html>
<body>
	<p id = "output">The square root of the 10 is: </p>
	<script>
		class Num {
			constructor(a) {
				// Static method execution
				this.sqrt = this.constructor.getSqrt(a);
			}

			static getSqrt(a) {
				return a * a;
			}
		}
		const num1 = new Num(10);
		document.getElementById("output").innerHTML += num1.sqrt;
	</script>
</body>
</html>

输出

The square root of the 10 is: 100

你也可以在非静态方法中执行静态方法。你需要使用类名作为引用,才能在非静态方法中执行静态方法。

示例:在非静态方法中执行静态方法

在下面的示例中,getSqrt() 是一个静态方法,printSqrt() 是一个普通的类方法。在 printSqrt() 方法中,我们执行了 getSqrt() 方法。

我们使用 Num 类的实例来执行 printSqrt() 方法。

<html>
<body>
	<p id = "demo"> </p>
	<script>
		const output = document.getElementById("demo");
		class Num {
			static getSqr(a) {
				return a * a;
			}

			printSqr(a) {
				output.innerHTML += "The square of " + a + " is: " + Num.getSqr(a) + "<br>";
			}
		}
		const num1 = new Num();
		num1.printSqr(6);
	</script>
</body>
</html>

输出

The square of 6 is: 36
广告