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でこれと同等のことを行う方法はありますか?