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

【C#学习笔记】指针使用

时间:2017-08-27 16:07:09      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:bsp   pac   stack   color   console   i++   ogr   div   笔记   

using System;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            int a = 5;
            unsafe
            {
                int* pa = &a;
                Console.WriteLine(*pa);
            }
/************************************************************************/
            int[] b = new int[10];
            unsafe
            {         
                fixed (int* pb = b)
                {
                    for (int i = 0; i < 10;i++ )
                    {
                        *(pb+i) = i;
                    }
                }
            }
            foreach (int i in b)
                Console.Write(i);
            Console.WriteLine();
/************************************************************************/
            unsafe
            {
                int* s = stackalloc int[5];
                for (int i = 0; i < 5;i++ )
                {
                    *s=i;
                    s++;
                }
                s = s - 5;
                for (int i = 0; i < 5;i++ )
                {
                    Console.Write(*(s+i));
                }
            }

            Console.Read();
        }
    }
}

 

【C#学习笔记】指针使用

标签:bsp   pac   stack   color   console   i++   ogr   div   笔记   

原文地址:http://www.cnblogs.com/tiandsp/p/7440474.html

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