typedefvoidint_void(int);int_void是一个接受整数且不返回任何内容的函数。我的问题是:它可以“单独”使用吗?没有指针吗?也就是说,是否可以将它简单地用作int_void而不是int_void*?typedefvoidint_void(int);int_voidtest;此代码编译。但是test能否以某种方式使用或分配给某物(无需强制转换)?/*Eventhisdoesnotwork(error:assignmentoffunction)*/typedefvoidint_void(int);int_voidtest,test2;test=test2;