2015年4月14日

Multi Thread.

摘要: 1. What is new of C# 5.0 阅读全文

posted @ 2015-04-14 23:11 shoutcharter 阅读(75) 评论(0) 推荐(0) 编辑

Today's interview of C#

摘要: I think they are advanced topics.C# 1. when will you use list, when will you use hashtable. 2. when will you use Idispose. 3.Async and Awaitpublic ... 阅读全文

posted @ 2015-04-14 22:15 shoutcharter 阅读(118) 评论(0) 推荐(0) 编辑

2015年4月13日

About abstract class.

摘要: Abstract meansshould be realized.Virtual means could be overrided.It is very different! 阅读全文

posted @ 2015-04-13 23:17 shoutcharter 阅读(98) 评论(0) 推荐(0) 编辑

Readonly and other things about C++

摘要: 1. in c#readonly can be delayed to initialize in constructor.2. in c++totally no readonly.Many people have mastered c++ before c#. They are the manage... 阅读全文

posted @ 2015-04-13 22:52 shoutcharter 阅读(134) 评论(0) 推荐(0) 编辑

Static

摘要: 1. C++static has three methods to use.a. As a class memberb. As a class methodc. non linkage. used in a function. it can't be accessed when the functi... 阅读全文

posted @ 2015-04-13 22:21 shoutcharter 阅读(384) 评论(0) 推荐(0) 编辑

2015年4月12日

strcpy and memcpy

摘要: 1. Inconsist length.char a3[2];char *a = "Itis "strcpy(a3, a); It is wrong. a3 will be correct, but a is missing. memcpy(a3, a, sizeof(char)* 2); It w... 阅读全文

posted @ 2015-04-12 12:08 shoutcharter 阅读(114) 评论(0) 推荐(0) 编辑

2015年3月25日

http://www.cnblogs.com/zhuli19901106/p/4356419.html

摘要: http://www.cnblogs.com/zhuli19901106/p/4356419.html 阅读全文

posted @ 2015-03-25 12:55 shoutcharter 阅读(116) 评论(0) 推荐(0) 编辑

2014年11月9日

用lambda表达式替代 for循环进行批量操作。

摘要: IEnumerable rectlist3 = rectlist.Select(rect =>newRect(rect.X + 2000, rect.Y, rect.rect.Width, rect.rect.Height)); 阅读全文

posted @ 2014-11-09 00:46 shoutcharter 阅读(2758) 评论(0) 推荐(0) 编辑

关于lambda表达式树

摘要: 总而言之:就是在表达式中没有花括号。IEnumerable rectlist3 = rectlist.Select(rect =>newRect(rect.X + 2, rect.Y, rect.rect.Width, rect.rect.Height));因此=>接翻译成:Func(Rect re... 阅读全文

posted @ 2014-11-09 00:42 shoutcharter 阅读(148) 评论(0) 推荐(0) 编辑

2014年10月31日

production stage

摘要: MP:mass production 批量生产DV design verification 设计验证EV engineering verification 工程样品验证PV process verification 小批过程验证 阅读全文

posted @ 2014-10-31 09:57 shoutcharter 阅读(120) 评论(0) 推荐(0) 编辑

导航