static void *
时间: 2023-10-21 19:06:08 浏览: 116
C#中static void Main(string[] args) 参数示例详解
`static void *` is a data type in C programming language that represents a pointer to an unspecified type, which means that it can point to any type of data. The `static` keyword is used to limit the scope of the pointer to the current file or function and prevent it from being visible outside of that scope. This data type is often used when writing functions or data structures that need to be able to handle different types of data.
阅读全文