解决办法:vi /etc/sysconfig/selinux将:SELINUX=enforcing改为:#SELINUX=enforcingSELINUX=disabled 重启linux
分类:
系统相关 时间:
2014-07-24 14:42:05
阅读次数:
245
内置方法 说明 ?__init__(self,...) 初始化对象,在创建新对象时调用 ?__del__(self) 释放对象,在对象被删除之前调用 ?__new__(cls,*args,**kwd) 实例的生成操作 ?__str__(self) 在使用print语句时被调用 ...
分类:
编程语言 时间:
2014-07-24 12:32:15
阅读次数:
374
//相邻的 2.3......d 之和都要不为素数
# include
# include
using namespace std;
int num[1010],vis[1010];
int n,m,d,cot;
int flag[10010];
void init()//素数打表
{
int i,j;
for(i=2;i<10010;i++)
{
if(!flag[i])
f...
分类:
其他好文 时间:
2014-07-24 11:32:42
阅读次数:
234
ZZ FROM:http://blog.csdn.net/musein/article/details/742609==================================================The __init and __exit declarations are spe...
分类:
系统相关 时间:
2014-07-24 11:27:42
阅读次数:
306
遇到问题:第一次从外部文件导入HelloWorld工程到workspace目录中,成功。删除后,再次从外部导入workspace目录提示 Some projects cannot be imported because they already exist in the workspaceeclip...
分类:
其他好文 时间:
2014-07-24 10:20:23
阅读次数:
415
Android为不同类型的进程分配了不同的内存使用上限,如果应用进程使用的内存超过了这个上限,则会被系统视为内存泄漏,从而被kill掉。Android为应用进程分配的内存上限如下所示:位置: /ANDROID_SOURCE/system/core/rootdir/init.rc 部分脚本# Defi...
分类:
移动开发 时间:
2014-07-24 10:13:13
阅读次数:
306
1.引用计数是为了计算机记住程序在执行的对像时是否已经全部释放对象的内存 //alloc创建一个新对象,并且新对象的引用计数为1 Student *stu = [[Student alloc] init]; //获取对象的引用计数 NSLog(@"%u", [stu retainCount...
分类:
其他好文 时间:
2014-07-24 10:06:13
阅读次数:
247
/* * 动态分配存储的顺序表 */#include #include #define INIT_SIZE 100#define EXPAND_SIZE 50typedef int ElemType;typedef struct { ElemType *head; int len; //...
分类:
其他好文 时间:
2014-07-24 09:56:34
阅读次数:
172
适用于mod为素数 o(N)void init(){ int i; pp[0] = 1; for(i = 1; i <= N-10 ; i++) { pp[i] = (pp[i-1]*i)%mod; }}LL fastmod(LL a,LL k){ ...
分类:
其他好文 时间:
2014-07-23 22:15:27
阅读次数:
200
第一次从外部文件导入HelloWorld工程到workspace目录中,成功。删除后,再次从外部导入workspace目录提示Some projects cannot be imported because they already exist in the workspaceeclipse中删除H...
分类:
系统相关 时间:
2014-07-23 20:40:15
阅读次数:
252