1.可选参数和命名参数 设计一个参数时,可为部分或全部参数分配默认值,调用这些方法的代码可以选择不指定部分实参,接受默认值,还可以通过制定参数名称的方式传递实参。如下class CLR可选参数 { private static int s_n = 0; priva...
http://stackoverflow.com/questions/733951/unable-to-download-the-source-code-of-open-source-projects-in-macs-terminal总结如下:xxx是想要安装的包sudo port -v extra...
分类:
系统相关 时间:
2014-10-20 03:20:29
阅读次数:
190
0 Homebrew是啥?“Homebrew installs the stuff you need that Apple didn’t.——Homebrew 使 OS X 更完整”。Homebrew的官网[1](多语言版本)简单明了地介绍了如何安装和使用这个工具,并提供了自己的Wiki。1 安装H...
分类:
系统相关 时间:
2014-10-20 03:21:19
阅读次数:
406
对于tomcat的集群有两种方式,这个主要是针对 session而言的。一种就是sticky模式,即黏性会话模式;另外一种就是session复制模式了。所谓sticky模式就是说同一个用户的访问 请求都被派送到同一个tomcat实例上,这样我们就无须在多台服务器之间实现session共享了,这是其好...
分类:
其他好文 时间:
2014-10-20 03:20:08
阅读次数:
145
Mac下面除了用dmg、pkg来安装软件外,比较方便的还有用MacPorts来帮助你安装其他应用程序,跟BSD中的ports道理一样。MacPorts就像apt-get、yum一样,可以快速安装些软件。下面将MacPorts的安装和使用方法记录在这里以备查。访问官方网站http://www.macp...
分类:
系统相关 时间:
2014-10-20 03:20:19
阅读次数:
286
刚接触android的时候,命名都是按照拼音来,所以有的时候想看懂命名的那个控件什么是什么用的,就要读一遍甚至好几遍才知道,这样的话,在代码的审查和修改过程中就会浪费不少不必要的时间。如果就是我一个人开发...
分类:
移动开发 时间:
2014-10-20 02:19:22
阅读次数:
263
App entrance: namespace?first_portable_demo
{
????public?class?App
????{
????????public?static?Page?GetMainPage()
????????{
????????????return?new?Greet...
分类:
其他好文 时间:
2014-10-20 02:19:57
阅读次数:
193
1、 git init 2、 git remote add origin https://git.oschina.net/hongweizhiyuan/xxxxxx.git 3、 git add --all 4、 git commit -m "update" 5、 git pull origin master? (如果报错,输入它) 6、 git push...
分类:
其他好文 时间:
2014-10-20 02:18:07
阅读次数:
137
6、用obj-c写一个冒泡排序-(void)mySort:(NSMutableArray*)mutArray
{
idtmpObj=nil;
unsignedlongflag=mutArray.count-1;//flag:最大脚标
while(flag>0){
intk=flag;
flag=0;
for(intj=0;j<k;j++){
intorder=NSOrderedAscending;//或NSOrderedDescending
if([[mutArray[..
分类:
其他好文 时间:
2014-10-20 02:19:53
阅读次数:
213
一、apache与tomcat整合的必要性Apache是最流行的Web服务器,开放源代码,支持跨平台的应用(可以运行在几乎所有的Linux、Unix、Windows系统平台上),尤其对Linux的支持相当完美。apache的优点有:1、功能强大,apache自带了很多功能模块,可根据需求编译自己需要的模块。2、..
分类:
Web程序 时间:
2014-10-20 02:17:39
阅读次数:
387
业务逻辑.h#pragmaonce
classOperation
{
protected:
doublenumberA;
doublenumberB;
doubleresult;
public:
voidsetValue(doublenumberA,doublenumberB)
{
this->numberA=numberA;
this->numberB=numberB;
}
virtualdoublegetValue()=0;
};
classOperationAdd:publicOpe..
分类:
其他好文 时间:
2014-10-20 02:19:04
阅读次数:
182
业务逻辑.h#pragmaonce
classOperation
{
protected:
doublenumberA;
doublenumberB;
doubleresult;
public:
voidsetValue(doublenumberA,doublenumberB)
{
this->numberA=numberA;
this->numberB=numberB;
}
virtualdoublegetValue()=0;
};
classOperationAdd:publicOpe..
分类:
其他好文 时间:
2014-10-20 02:17:24
阅读次数:
142
11、面向对象的三大特征,并作简单的介绍。
面向对象的三个基本特征是:封装、继承、多态。封装是面向对象的特征之一,是对象和类概念的主要特性。封装,也就是把客观事物封装成抽象的类,并且类可以把自己的
数据和方法只让可信的类或者对象操作,对不可信的进..
分类:
其他好文 时间:
2014-10-20 02:18:24
阅读次数:
227
ntpdateasia.pool.ntp.orgyum-yinstallntpntpdatetime.nist.gov
分类:
其他好文 时间:
2014-10-20 02:16:52
阅读次数:
150
Hi,MynameisKhanittafromPhuket,Thailand.MynicknameisMui(Thaisalwaysuseanicknametocallafriend/relative.I‘dtraveledinXinjiangfromSeptember28toOctober06,2014.Itwasveryimpressiveandexciting.
分类:
其他好文 时间:
2014-10-20 02:18:14
阅读次数:
177
监控端工具ansible计划任务*/10****/dev/shm/history_log.sh构建脚本vim/dev/shm/history_log.sh#!/bin/bashfunctionhistory_log(){ localtime time=`date-d"-10min""+%F%H:%M"` tim=${time%[0-9]} remote_ab-htest-c"tail-300/tmp/all_history"|grep"$tim">>/tmp/All_hi..
分类:
系统相关 时间:
2014-10-20 02:18:43
阅读次数:
238