一个泛型的问题。
2018-06-23 22:35:23来源:未知 阅读 ()
前段时间我还在纳闷,在上上篇设计模式的单例模式中,我只New过一次对象。但是查看我分明得到了2个或多个不同的对象。今天做个试验。代码如下
通过实验发现,对象确实是new了两次,initial确实是进入了两次,对于不同泛型对象,是要重新开辟内存的。
下面的文章做个资料保存。
http://www.cnblogs.com/DebugLZQ/archive/2012/09/03/2669383.html
http://msdn.microsoft.com/en-US/library/f4a6ta2h(v=vs.80).aspx
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace ConsoleApplication10 7 { 8 class Program 9 { 10 static void Main(string[] args) 11 { 12 generictest<custom1>.List.Add(new custom1("custom1(1)")); 13 generictest<custom1>.List.Add(new custom1("custom1(2)")); 14 generictest<custom2>.List.Add(new custom2("custom2(1)")); 15 generictest<custom2>.List.Add(new custom2("custom2(2)")); 16 Console.ReadKey(); 17 } 18 } 19 class generictest<T> 20 { 21 private generictest() 22 { } 23 static private List<T> list=null; 24 static public List<T> List 25 { 26 set 27 { 28 29 list = value; 30 } 31 get 32 { 33 if (list == null) 34 { 35 initial(); 36 } 37 return list; 38 } 39 } 40 41 private static void initial() 42 { 43 list = new List<T>(); 44 } 45 } 46 class custom1 47 { 48 public string str; 49 public custom1(string str) 50 { 51 this.str=str; 52 } 53 } 54 class custom2 55 { 56 public string str; 57 public custom2(string str) 58 { 59 this.str=str; 60 } 61 62 } 63 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:C#基础
下一篇:App.config的学习笔记
- HTML基础01 2020-06-07
- Vue 打包后自定义样式无法覆盖elementUI组件原有样式问题 2020-05-31
- 关于浏览器兼容问题 2020-05-27
- 想成为一个高薪WEB前端程序员,这些书籍你要看 2020-05-22
- 构建一个杂志布局(译文) 2020-05-14
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash