📜  将 void * 转换为 int - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:32.008000             🧑  作者: Mango

代码示例2
int a = 5;
void *p = (void *)a;
int b = (int)p;