码迷,mamicode.com
首页 > Windows程序 > 详细

c# 指针

时间:2020-07-19 18:07:13      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:app   com   line   static   class   ati   print   指针变量   tty   

指针变量声明:
例:
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,int* pb)
{
int temp = *pa;
*pa = *pb;
*pb = temp;
}
private static unsafe void Main(string[] args)
{
int a = 10, b = 20;

Console.WriteLine("a:" + a + ",b:" + b);


swap(a, b);

Console.WriteLine("after swap:a:" + a + ",b:" + b);


int* pa = &a, pb = &b;

swapP(pa, pb);

Console.WriteLine("after swapP:a:" + a + ",b:" + b);

Console.ReadKey();
}



a:10,b:20
after swap:a:10,b:20
after swapP:a:20,b:10

c# 指针

标签:app   com   line   static   class   ati   print   指针变量   tty   

原文地址:https://www.cnblogs.com/guomengkai/p/13339454.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!