public class Facade { /** * @param args 外观模式 */ One
one; Two two; Three three; public Facade() { one=new One(); two=new Two();
three=new Three()...
分类:
其他好文 时间:
2014-04-29 11:15:47
阅读次数:
238
引用http://linux.chinaitlab.com/soft/864157.html欢迎进入Linux社区论坛,与200万技术人员互动交流
>>进入 一、创建动态链接库1、创建工程new->project->c++ project选择Shared
Library->Empty Projec....
分类:
系统相关 时间:
2014-04-29 11:15:47
阅读次数:
559
@Html.ActionLink代码:HtmlHelper@Html.ActionLink("默认","Index")@Html.ActionLink("带控制器",
"Index", "RsvpForm")@Html.ActionLink("带默认路由参数", "Index", new {page...
分类:
Web程序 时间:
2014-04-29 11:13:46
阅读次数:
666
http://hi.baidu.com/mingyuejingque/item/78e71aff57ae9ec5a835a2e4感谢mingyuejingquest
= avformat_new_stream( m_oc, NULL); if (!st) { fprintf(stderr, ...
分类:
其他好文 时间:
2014-04-29 10:41:46
阅读次数:
441
add the following text to .vimrc or .gvimrc: if
has("cscope") set csprg=/usr/bin/cscope set csto=0 set cst set nocsverb " add
any database in cur...
分类:
其他好文 时间:
2014-04-29 10:27:46
阅读次数:
398
项目里的朋友圈页面,每幅图片的评论内容里面,有不同的用户进行评论,起初想法是点击用户名直接进行回复,后来看微信都是点击评论内容进行回复评论的发起人,这个好做,把这个textview绑定一个监听器就ok了
后来再一想,如果要实现类似微信点击用户名就进入用户的主页,怎么让用户名可以点击呢?...
分类:
微信 时间:
2014-04-29 10:21:45
阅读次数:
735
Dictionarydic=lst.ToDictionary(newFunc(c=>c.Id),newFunc(c=>c.Num));//如果觉得上面的写法太复杂,还可以简化为//Dictionary
dic = lst.ToDictionary(c => c.Id, c => c.Num...
分类:
其他好文 时间:
2014-04-29 10:18:46
阅读次数:
339
You are given two linked lists representing two
non-negative numbers. The digits are stored in reverse order and each of their
nodes contain a single ...
分类:
其他好文 时间:
2014-04-29 10:17:46
阅读次数:
406
chkconfigchkconfig命令主要用来更新(启动或停止)和查询系统服务的运行级信息。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接。使用语法:chkconfig
[--add][--del][--list][系统服务] 或 chkconfig [--lev...
分类:
其他好文 时间:
2014-04-29 09:48:47
阅读次数:
322
相对于JLabel显示提示文字,JTextArea有一个先天优势:文字可以拷贝出来。经过下面设置它也能在外观上和JLabel一致。代码如下:JTextArea
txtArea=new JTextArea(5,20);// 初始化// 设置文字txtArea.setText("We needto up...
分类:
其他好文 时间:
2014-04-29 09:33:45
阅读次数:
544