JavaScript 中的私有方法
将数据和方法封装在类中是面向对象编程的基本原则。然而,在 JavaScript 中,在类中定义私有方法可能具有挑战性。
创建公共方法
要在 JavaScript 中创建公共方法,我们通常使用原型property:
<code class="javascript">function Restaurant() {} Restaurant.prototype.buy_food = function(){ // something here }; Restaurant.prototype.use_restroom = function(){ // something here };</code>
用户可以访问这些方法如下:
<code class="javascript">var restaurant = new Restaurant(); restaurant.buy_food(); restaurant.use_restroom();</code>
定义私有方法
要创建一个只能被类内其他方法访问的私有方法,我们可以将其定义在原型:
<code class="javascript">function Restaurant() { var private_stuff = function() { // Only visible inside Restaurant() // Do something }; this.use_restroom = function() { // use_restroom is visible to all private_stuff(); }; this.buy_food = function() { // buy_food is visible to all private_stuff(); }; }</code>
限制
这种方法有一个缺点:私有方法不能成为原型的一部分。这意味着它们不能直接从类的实例访问:
<code class="javascript">var r = new Restaurant(); r.private_stuff(); // This will not work</code>
因此,私有方法只能由同一类中的公共方法调用。虽然这可能提供某种程度的封装,但它不如其他编程语言中的真正私有方法那么健壮。
以上是JavaScript中如何实现私有方法的封装?的详细内容。更多信息请关注PHP中文网其他相关文章!