我想给出一个指令作为参数:
execute_at_frame(int frame_number, <instruction>)
{
for(f = 1 ; f < F_MAX ; f++)
{
/* other instructions */
if (f == frame_number)
/* execute <instruction> */
/* other instructions */
}
}
- 一种调用方式:
execute_at_frame(5,execute(42));
- 另一种调用方式:
execute_at_frame(6,process());
那(或类似的)可能吗?
提前致谢 :-)