面向对象编程

Posted .NET应用开发教程

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面向对象编程相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>面向对象编程</title>
    <meta charset="utf-8" />
</head>
<body>    
    <script>
        var person = {
            name: "张三",
            age: 18,
            getName: function () {
                return this.name;
            }
        }
    </script>
    <script>
        function parent() {
            this.name = "张三";
            this.show1 = function () {
                alert("我是" + this.name);
            }
        }
        function child() {
            this.age = 18;
            this.show2 = function () {
                alert("我的年龄是"+this.age)
            }
        }
        child.prototype = new parent();//child继承parent
        var test = new child();
        test.name = "李四";//继承父对象的name属性,并修改属性值
        test.show1();//继承父对象的show1()方法
        test.show2();//调用子对象的show2()方法
    </script>

</body>
</html>

 

以上是关于面向对象编程的主要内容,如果未能解决你的问题,请参考以下文章

面向面试编程代码片段之GC

Scala的面向对象与函数编程

面向对象编程

面向过程编程与面向对象编程

Java面向对象

面向对象编程(OOP)