当前位置:  编程技术>.net/c#/asp.net

C# Pointer指针应用实例简述

    来源: 互联网  发布时间:2014-10-31

    本文导语:  本文所述为在C#中使用Pointer指针的简单示例,非常适合新手参考学习。该实例演示了字符串的加密及解密的过程,将字符串指针p指向字符数组b,并将参数p传给函数,以及对给定字符串进行加密处理。 具体实例代码如下: us...

本文所述为在C#中使用Pointer指针的简单示例,非常适合新手参考学习。该实例演示了字符串的加密及解密的过程,将字符串指针p指向字符数组b,并将参数p传给函数,以及对给定字符串进行加密处理。

具体实例代码如下:

using System;
namespace PointerDemo
{
 public class PointerDemo
 {
 public static void Main()
 {
  string s = "Hello Csharp!"; // 原字符串
  Console.Write("the original string: ");
  Console.WriteLine("{0}rn", s);
  char[] b = new char[100];
  s.CopyTo(0,b,0,13);
  Console.Write("the encoded string: ");
  // 使用不安全代码
  unsafe
  {
  // 加密过程
  // 将字符串指针p指向字符数组b,并将参数p传给函数
  fixed(char *p = b) NEncodeDecode(p);
  }
  for(int i = 0; i < 13; i++)
  Console.Write(b[i]);
  Console.WriteLine("rn");
   Console.Write("the decoded string: ");
  unsafe
  {
  // 解密过程
  fixed(char *p = b)NEncodeDecode(p);
  }
  for(int i = 0; i < 20; i++)
  Console.Write(b[i]);
  int t = 2;
  t = t^5;
  Console.WriteLine(t);
  Console.WriteLine();
 }
 // 对给定字符串进行加密处理
 unsafe public static void NEncodeDecode(char *s)
 {
  int w;
  for(int y = 0; y < 13; y++)
  {
  w = (int) *(s + y);
  w = w^5; // 异或运算
  *(s + y) = (char)w;
  }
 }
 }
}

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 这里的类型都是指针啊怎么会出现warning: assignment makes pointer from integer without a cast
  • java命名空间javax.sound.midi类shortmessage的类成员方法: song_position_pointer定义及介绍
  • css pointer控制在firefox下显示手型的代码
  • pointer 指定問題
  • munmap_chunk(): invalid pointer
  • vga zone pointer(online ,thx)
  • "assignment makes pointer from integer without a cast"
  • 请问几个有关File lock和null pointer的问题
  • 出现warning: assignment makes pointer from integer without a cast
  • 警告 assignment makes integer from pointer without a cast是怎么回事
  • 讨厌的警告,关于iconv函数的 :passing argument 2 of ‘libiconv’ from incompatible pointer type
  • warning: cast to pointer from integer of different size
  • NULL pointer access
  • snd_pcm_ops的.pointer所實作的內容?
  • struct pointer問題
  • 【error: dereferencing pointer to incomplete type】学unix网络编程,有疑问~~
  • 一个小问题关于dereferencing pointer to incomplete type的
  • 程序提示Null pointer assignment是什么意思!
  • dereferencing pointer to incomplete type····
  • icmp dereferencing pointer to incomplete type
  • 求助:open设备时内核报错:kernel NULL pointer
  • Unable to handle kernel NULL pointer dereference..如何运用backtrace找原因


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3