如何使用string中的名称创建类方法?

时间:2014-07-17 11:07:48

标签: javascript oop

这可能在JS中有一个类,并从字符串声明2个方法名称吗? 我的意思是这样的:

function MyClass()
{
var methods = ['hello', 'hey'];
for (var i in methods)
{
    this[methods[i]] = function()
    {
       alert('This is method ' + methods[i]);
    }
}
}

这应该创建一个带有函数hello和嘿的类。我需要创建一些具有非常相似的主体但名称不同的函数。 我不想使用eval,因此可以编译代码。

1 个答案:

答案 0 :(得分:2)

<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" type="text/css" href="style.css"></link>
    </head>
    <body>
        <script>
function generator(i) {
    return function (x) {
        return x * i;
    }
}
function foo(methods) {
    var i;
    for (i = 0; i < methods.length; i++) {
        this[methods[i]] = generator(i);
    }
}

var test = new foo(['nulify', 'repeat', 'double']);
console.log(test.nulify(10));
console.log(test.repeat(10));
console.log(test.double(10));
        </script>
    </body>
</html>

更多问题......