A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 郝滨 中级黑马   /  2013-2-26 14:06  /  1135 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

namespace kongzhi
{
    class Program
    {
        static void Main(string[] args)
        {
            Class1 c1 =new Class1();
            string[] names = {"kobe","james","bosh","wade","Tmac"};
            c1.bianhuan(names);
            foreach (var item in names)
            {
                Console.WriteLine(item);
            }
            Console.WriteLine("OK");
            Console.ReadKey();
        }
    }
}
这是控制代码
namespace bianhuan
{
    public class Class1
    {
                public void bianhuan(string[] str, hbdelegate bh)
        {
            for (int i = 0; i < str.Length; i++)
            {
                str = bh(str);
            }
        }
这是转换类
namespace bianhuan
{
    class hbdelegate
    {
        public delegate string bhdelegate(string msg);
    }
}
委托类hbdelegate 要怎么写 ? 现在错误是bianhuan可访问性不一致

评分

参与人数 1技术分 +1 收起 理由
张文 + 1

查看全部评分

1 个回复

倒序浏览
  1. namespace kongzhi
  2. {
  3.     class Program
  4.     {
  5.         static string alter(string str)
  6.         {//定义一个改变string的方法
  7.             return str + "!";
  8.         }
  9.         static void Main(string[] args)
  10.         {
  11.             Class1 c1 =new Class1();
  12.             string[] names = {"kobe","james","bosh","wade","Tmac"};
  13.             c1.bianhuan(names,alter); //这里需要两个传入参数,第二个是方法
  14.             foreach (var item in names)
  15.             {
  16.                 Console.WriteLine(item);
  17.             }
  18.             Console.WriteLine("OK");
  19.             Console.ReadKey();
  20.         }
  21.     }
  22. }

  23. namespace bianhuan
  24. {
  25.     public class Class1
  26.     {
  27.         public void bianhuan(string[] str, hbdelegate bh)
  28.         {
  29.             for (int i = 0; i < str.Length; i++)
  30.             {
  31.                 str[i] = bh(str[i].ToString());
  32.             }
  33.         }
  34.     }
  35. }
  36. namespace bianhuan
  37. {
  38.     public delegate string hbdelegate(string str);
  39.     //这里是重点,委托的定义,委托是和类同级别的,委托的定义要和方法类似,注意返回值和参数
  40. }
复制代码
关于委托和事件,先仔细了解可以看看我博客,我转载了一篇相关的文章,并且写了一些心得,你可以去看看
http://blog.csdn.net/oxoxzhu/article/details/8613627

评分

参与人数 1技术分 +1 收起 理由
张文 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马