先用yum安装bind这个包(这个包是DNS的安装包)然后关闭SELinuxsetenforce0在清空防火墙iptables-F安装完只后vim到/etc/named.conf进入后修改options区域修改之前是这样修改之后是这样接着修改named.rfc1912.zones文件,vi/etc/named.rfc1912.zones这个文件仅保留这两个区域正..
分类:
系统相关 时间:
2015-06-06 23:38:55
阅读次数:
190
当鼠标移到不同的选项卡,就会更换不同的内容实现代码如下:
分类:
Web程序 时间:
2015-06-06 23:38:44
阅读次数:
135
配置文件使用MyBatis使用xml使用注解新建接口类,在接口中定义CRUD方法声明,然后使用注解:@Insert("insertintousers(name,age)values(#{name},#{age})")@Delete("deletefromuserswhereid=#{id}")@Update("updateuserssetname=#{name},age=#{age}whereid=#{id}")@Select("sele..
分类:
其他好文 时间:
2015-06-06 23:39:33
阅读次数:
117
1.继承用一个例子说明继承classPerson{
privateStringname;
privateintage;
publicStringgetName(){
returnname;
}
publicvoidsetName(Stringname){
this.name=name;
}
publicintgetAge(){
returnage;
}
publicvoidsetAge(intage){
this.age=age;
}
publi..
分类:
编程语言 时间:
2015-06-06 23:38:01
阅读次数:
140
【YouVersion】TheBible圣经App今天向大家郑重推荐一款非常棒的圣经App:《TheBible》YouVersion团队开发的全球下载量和安装数目第一的圣经App,安装量已逾1亿8千万,这个数目每秒都在增加。在Android的GooglePlay上就有近1亿下载量,再加上苹果的AppStore和其他App平台,数目..
分类:
移动开发 时间:
2015-06-06 23:36:50
阅读次数:
11563
1.新建项目(console or winform)
2.添加组件,选择数据库文件
自己名一个名字,我选择的是test1.mdf
3.打开数据库,右键选择属性
4.获得连接字符串
5.连接成功
6.关闭连接
至此,本地的数据库连接已经成功测试了.
代码:
using System;
using System.Collections....
分类:
数据库 时间:
2015-06-06 23:36:50
阅读次数:
168
代码:
#include
#include
#include
using namespace std;
int a[5005];
int dp[130005];
int main()
{
int n;
while(scanf("%d",&n)&&n>=0)
{
int k=1;
int s=0;
for(int i=0;...
分类:
其他好文 时间:
2015-06-06 23:36:28
阅读次数:
134
使用NSKeyedArchiver压缩对象成二进制数据,再使用NSKeyedUnarchiver解压二进制数据,如果解压时数据为nil,或者数据中有异常的数据,那么解压将会出错,甚至会导致程序crash掉。可以用这种方法防止程序crash:
NSData *data=[[NSUserDefaults
standardUserDefaults] valueForKey:key];
...
分类:
其他好文 时间:
2015-06-06 23:34:49
阅读次数:
158
//求1到n之间与n互质的数的四次方的和
//segma(n^4) = (6n^5+15n^4+10n^3-n)/30
//对于(a/b)%mod可以转化为(a*inv(b))%mod
//inv(b)为b的逆元
//由费马小定理a^(p-1) = 1(modp) a , p 互质可得
//30的逆元为30^(mod-2)
//由容斥原理很容易得到与n不互质的数之和为
//对于所有的...
分类:
其他好文 时间:
2015-06-06 23:35:00
阅读次数:
131
与操作字符串有关的最后一个方法是localeCompare(),这个方法比较两个字符串,并返回下列值中的一个:
如果字符串在字母中应该排在字符串参数之前,则返回一个负数(大多数情况下是-1)。如果字符串等于字符串参数,则返回0。如果字符串在字母表中应该排在字符串参数之后,则返回一个正数(大多数情况下返回1)。
var stringValue = "yellow";
alert(string...
分类:
Web程序 时间:
2015-06-06 23:35:37
阅读次数:
119
Compiler Warnings 编译器警告
Oracle 10g allows you to enable compile-time warnings that are useful to identify potential run-time problems in your programs. These warnings are not serious enough to rais...
分类:
数据库 时间:
2015-06-06 23:35:07
阅读次数:
179
题意:输出第n大的质因数只有2,3,5,7的数
分析:预处理满足这些条件的数,然后输出dp[n]就行,满足条件的数无非就是2,3,5,7不断的做乘积
这题的关键就是如何把这些乘积从小到大存入数组:设置四个计数器p2,p3,p5,p7完成这个任务
代码:
#include
#include
#define min(a,b) (a<b?a:b)
using namespace std;
int...
分类:
其他好文 时间:
2015-06-06 23:34:39
阅读次数:
162
1.为什么要设置JVM内存大小呢?
因为如果你的程序运行时超过JVM默认内存大小,就不会报传说中内存溢出异常。
Exception in thread "main" java.lang.OutOfMemoryError: Java heap space
at junit.Bean.main(Bean.java:25)
2.在MyEclipse 菜单 Run->run conf...
分类:
系统相关 时间:
2015-06-06 23:33:39
阅读次数:
233
欢迎大家扫描关注PHPthinking官方微信订阅号,我们将给您定期发送质量博文、新闻趣事、网站公告等等,同时还有PHPthinking准备的每日微信红包(金额不等,已发出百元红包)等着你!
官网地址:http://www.phpthinking.com/...
分类:
微信 时间:
2015-06-06 23:34:46
阅读次数:
395
A表有id,n1,n2,n3字段,为新建空表,B表有id,n1,n2,n3,n4,n5等字段,为含有数据的旧表,现将B表中的n1,n2,n3组合的记录去重后导入A表中,并且A表主键也要录入值,方法是将B表的记录查询后去重,同时对查记录结果编排序号,将序号作为待插入A表的id值...
分类:
数据库 时间:
2015-06-06 23:33:07
阅读次数:
195
代码:
#include
#include
using namespace std;
int main()
{
int t;
scanf("%d",&t);
while(t--)
{
int n,k;
int a[9],b[9];
scanf("%d%d",&n,&k);
for(int i=1; ...
分类:
其他好文 时间:
2015-06-06 23:33:57
阅读次数:
129
命令名称:chmod
命令英文原意:change the permissions mode of a file
命令所在路径:/bin/chmod
语法:chmod 【{ugoa}{+-=}{rwx}】 【文件或目录】
【mode = 777】 【文件或目录】
-R 递归修改
功能描述:...
分类:
系统相关 时间:
2015-06-06 23:35:42
阅读次数:
217