2.工厂方法
存在一个工厂,每次调用都可以生成一个对象。
function getStudent(_sname,_sex)
{
var student = new Object();
student.sname=_sname;
student.sex=_sex;
student.getsname=function(){
return this.sname;
}
student.setsname = function(_sname)
{
this.sname=_sname;
}
return student;
}
var student = getStudent(“hah”,“aha”);
// student.setsname(“jack”);
console.log(student.getsname());
3.构造方法
function Student(_sname,_sex)
{
this.sname=_sname;
this.sex=_sex;
this.getsname=function()
{
return this.sname;
}
this.setsname=function(_sname)
{
this.sname=_sname;
}
}
var student = new Student(“this”,“that”);
// student.setsname(“blue”);
console.log(student.getsname());
4.通过原型的方式
function Student(){}
Student.prototype.sname=“tom”;
Student.prototype.sex=“m”;
Student.prototype.setsname=function(_sname)
{
this.sname=_sname;
}
Student.prototype.getsname=function()
{
return this.sname;
}
var student = new Student();
student.setsname(“yuanxing”);
var student2 = new Student();
student2.setsname(“diergename”);
console.log(student.getsname());
console.log(student2.getsname());
很多时候需要将 34中方法结合使用,例如
function Student(_sname,_sex)
{
this.sname=_sname;
this.sex=_sex;
Student.prototype.setsname=function(_sname)
{
this.sname=_sname;
}
Student.prototype.getsname=function()
{
return this.sname;
}
}
var student = new Student(“hhe”,“m”);
console.log(student.getsname());
student.setsname(“xixi”);
console.log(student.getsname());
下面是两个练习:
最后
你要问前端开发难不难,我就得说计算机领域里常说的一句话,这句话就是『难的不会,会的不难』,对于不熟悉某领域技术的人来说,因为不了解所以产生神秘感,神秘感就会让人感觉很难,也就是『难的不会』;当学会这项技术之后,知道什么什么技术能做到什么做不到,只是做起来花多少时间的问题而已,没啥难的,所以就是『会的不难』。
开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】
我特地针对初学者整理一套前端学习资料
么什么技术能做到什么做不到,只是做起来花多少时间的问题而已,没啥难的,所以就是『会的不难』。
开源分享:【大厂前端面试题解析+核心总结学习笔记+真实项目实战+最新讲解视频】
我特地针对初学者整理一套前端学习资料
[外链图片转存中…(img-d9z6eoTr-1714301675376)]