1.logger.debug("Debug ...")或logger.info("Info
...")或logger.warn("Warn ...")或logger.error("Error ...")
都只输出对应的信息,即logger.debug只输出debug的信息,info只输出info的信...
分类:
其他好文 时间:
2014-04-30 20:41:18
阅读次数:
704
这篇文章主要来源于:codeguru网站的一篇文章:A TR1 tutorial:smart
pointer (详细介绍了C++的智能指针,尤其是shared_ptr)。众所周知,在 TR1
之前,C++标准库中的智能指针只有auto_ptr,但由于它的【排他所有权模式】(exclusive own...
分类:
编程语言 时间:
2014-04-30 18:01:06
阅读次数:
478
#includeusing namespace std;int main(){ char
a,b,c; while(scanf("%c%c%c",&a,&b,&c)!=EOF) { getchar();
cout<<a<<b<<c<<endl; } retur...
分类:
其他好文 时间:
2014-04-30 14:00:36
阅读次数:
346
引用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
package com.szy.shared.activity;import
android.app.Activity;import android.content.Context;import
android.content.SharedPreferences;import android.con...
分类:
其他好文 时间:
2014-04-29 10:34:47
阅读次数:
407
crontab运行脚本存在两大问题:环境变量和路径,从而导致单独运行脚本没问题,但用crontab运行就报错。1、环境变量
描述问题:crontab: usage error: no arguments permitted after this option
因为crontab不提供环境,所...
分类:
其他好文 时间:
2014-04-29 10:23:47
阅读次数:
370
前几天我在园子里分享过2款很酷的CSS3
Loading加载动画,今天又有10个最新的Loading动画分享给大家,这些动画的样式都不一样,实现起来也并不难,你很容易把它们应用在项目中,先来看看效果图:你也可以在这里查看DEMO演示。下面我们来挑选几个比较典型的案例来分析一下代码。先来看看第一个案例...
分类:
Web程序 时间:
2014-04-29 10:17:46
阅读次数:
517
当在eclipse中的web工程中增加了extjs4,出现An internal error
occurred during: "Building workspace". Java heap space 错误。
解决办法1:把extjs4的工程安装包不要放到web工程中就ok了,或者建议直接用mye...
分类:
其他好文 时间:
2014-04-29 10:13:46
阅读次数:
401
//现在输入一个正整数k,找到所有的正整数x>=y,使得1/k=1/x+1/y.#includeusing
namespace std;int main(){ int n; //测试数据组数 cin>>n; int y; double x;
while(n--) ...
分类:
其他好文 时间:
2014-04-29 09:38:47
阅读次数:
360
#includeusing namespace std;int main(){ int N;
//测试数据组数 cin>>N; while(N--) { int M; //百分制成绩 cin>>M; int a=M/10; ...
分类:
其他好文 时间:
2014-04-29 09:38:47
阅读次数:
409