面向对象编程

Posted hzx-5

tags:

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

    function inherits(Child,Parent){
        var F = function(){};
        F.prototype = Parent.prototype;
        Child.prototype = new F();
        Child.prototype.constructor = Child;
    }
    function Student(props){
        this.name = props.name || ‘WangXiang‘;
    };
    Student.prototype.hello = function(){
        alert(‘Hello,‘ + this.name + ‘!‘)
    };
    function PrimaryStudent(props){
        Student.call(this,props);
        this.grade = props.grade || 43;
    }
    inherits(PrimaryStudent,Student);
    PrimaryStudent.prototype.getGrade = function(){
        return this.grade;
    }

 

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

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

Scala的面向对象与函数编程

面向对象编程

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

Java面向对象

面向对象编程(OOP)