摘要: 指针变量声明:例: int* p1, p2, p3; public static unsafe void swap(int a,int b) { int temp; temp = a; a = b; b = a; } public static unsafe void swapP(int* pa,i 阅读全文
posted @ 2020-07-19 13:32 流星曳尾 阅读(367) 评论(0) 推荐(0) 编辑