我的漫漫程序之旅

专注于JavaWeb开发
随笔 - 39, 文章 - 310, 评论 - 411, 引用 - 0
数据加载中……

JavaScript模拟实体类的实现

<SCRIPT LANGUAGE="javascript">
    
/*
     * JavaScript模拟实体类的实现
     
*/

    
function User(){
        
this.name = "";
        
this.age = 0;
        
//如果传入实参直接 初始化
        if (arguments.length == 2{
            
this.name = arguments[0];
            
this.age = arguments[1];
        }

        
this.getName = function(){
            
return this.name;
        }

        
        
this.setName = function(name){
            
this.name = name;
        }

        
        
this.getAge = function(){
            
return this.age;
        }

        
        
this.setAge = function(age){
            
this.age = age;
        }

    }

    
    
var user = new User("zdw"22);
    alert(
"name:" + user.getName() + ",age : " + user.getAge());
    user.setName(
"admin");
    user.setAge(
99);
    alert(
"changed********name:" + user.getName() + ",age : " + user.getAge());
</SCRIPT>


posted on 2008-07-09 15:33 々上善若水々 阅读(852) 评论(0)  编辑  收藏 所属分类: JavaScript


只有注册用户登录后才能发表评论。


网站导航: