代码拉取完成,页面将自动刷新
<!--
* @Author: your name
* @Date: 2022-04-13 09:43:00
* @LastEditTime: 2022-04-13 09:55:32
* @LastEditors: your name
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \geyao\javascript实现继承220413.html
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>实现继承与多态</title>
</head>
<body>
<script>
function parentClass() {
//私人变量
var x="我是私人变量"
//私人方法
function method() {
console.log("我是私人方法")
}
//公共变量
this.x="我是公共变量"
//公共方法
this.method=function() {
console.log(x)
console.log(this.x)
method()
}
}
parentClass.prototype.method1=function() {
console.log("我是父级的原型方法")
}
parentClass.staticMethod=function(){
console.log("我是父级的静态方法")
}
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。