var coder1 = new coder(); var coder2 = new coder(); alert(coder1.name); /*显示现代魔法*/ coder2.name = 'nowamagic'; alert(coder1.name); /*显示nowamagic*/ alert(coder2.name); /*这个也显示nowamagic*/
function coder() { this.name = '现代魔法'; this.job = '程序员'; if (typeof(coder._init) == 'undefined') { this.coding = function () { alert('我正在写代码'); }; this._init = true; } }
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn