我想知道是否可以在 Java 中模拟 Javascript 原型。是否可以将变量列表与 Java 中的函数相关联?如果可能的话,我想创建类似于 Javascript 原型的东西。
所以这里有一个例子(在 Javascript 中):
var s = doStuff.prototype;
s.isImplemented = false;
function doStuff(){
//this function has not yet been implemented
}
var s = functionIsImplemented.prototype;
s.isImplemented = true;
function functionIsImplemented(theFunction){
//this function returns true if the function has been identified as "implemented"
if(theFunction.prototype.isImplemented == true){
return true;
}
return false;
}
alert(functionIsImplemented(doStuff)); //this should print "false"
alert(functionIsImplemented(functionIsImplemented)); //this should print "true"
有没有办法在 Java 中做到这一点?