我需要将一个方法设置到另一个函数的参数中。所以它应该看起来像这样(只是伪代码):
void toDoAnotherMethod(anotherMethod()) {
anotherMethod();
}
void justMethod() {
*some stuff to do*
void Start() {
toDoAnotherMethod(justMethod);
但我完全不明白如何在实际代码中做到这一点。有人可以帮助我吗?
红糖糍粑
相关分类