弱智啊,项目主管弱智地在最赶的时候布置弱智任务,气炸了~!
为什么你总是怪罪别人?你是不是有推托责任的爱好?
本来要一早做好的功能,他到最后才说又要加一个功能,而且是时间赶得不行了,功能短时间不能完成,他又说今天必须弄好
经理又要我研究另外一个模块,我又不会分身术
听到他说要加功能就火了,经理那个模块我都还没头绪!
.NET String类有个静态的方法
[C#]
public static string Intern( string str?);
返回CLR的字符串池(string storage by maintaining a table, called the intern pool,)的和str相同的字符串的引用。
使用Intern的优点,减少内存的使用量,减少内存的分配时间。提高性能。
建立String object in pool。
1。定义变量, String s ="aaa"; Compiler自动建立。
2。使用Intern( string str?);如果str没有存在,Intern自动在pool中建立str的引用。