30
调用方法而不调用它
受现已删除的StackOverflow问题的启发。您能否提出一种方法来执行特定的方法,而无需显式调用它?间接程度越高,效果越好。 准确地说,这就是我的意思(C仅用作示例,接受所有语言): // Call this. void the_function(void) { printf("Hi there!\n"); } int main(int argc, char** argv) { the_function(); // NO! Bad! This is a direct call. return 0; } 原始问题: