1.JVM运行时数据区域的划分 a.程序计数器(Program Counter Register) 一块较小的内存空间,可以看作是当前线程所执行的字节码的行号指示器。每个线程拥有独立的一个计数器,如果当前执行的是Native方法,则计数...
分类:
编程语言 时间:
2014-08-21 22:58:45
阅读次数:
483
健康,home? [java的内存浅析] 摘要: 原创出处: http://www.cnblogs.com/Alandre/ 泥沙砖瓦浆木匠 希望转载,保留摘要,谢谢! 乐观上上,how can other kno u,u r yourself!I must be strong and carry on. ...
分类:
编程语言 时间:
2014-08-21 22:58:35
阅读次数:
466
点击链接加入群【JavaEE(SSH+IntelliJIDE+Maven)】:http://jq.qq.com/?_wv=1027&k=L2rbHv 一:quartz简介 ? ? ? ?OpenSymphony 的Quartz提供了一个比较完美的任务调度解决方案。 ? ? ? ?Quartz 是个开源...
分类:
编程语言 时间:
2014-08-21 22:58:25
阅读次数:
599
第一步:?查看usb设备信息 在 终端输入:system_profiler SPUSBDataType???? 可以查看连接的usb设备的信息 比如我的usb信息如下(部分内容): ?Android: ????????????? Product ID: 0x2769 ?...
分类:
移动开发 时间:
2014-08-21 22:58:15
阅读次数:
978
The following options can be placed in a kickstart file. If you prefer to use a graphical interface for creating your kickstart file, use the Kickstart Configurator application. Refer to Chapter 29...
分类:
其他好文 时间:
2014-08-21 22:58:06
阅读次数:
739
1、hadoop插件的参数配置 2、运行时的参数 3、运行结果
使用CSS控制页面样式时,经常出现设定的样式被“覆盖”,不能生效的情况。
浏览器是依据怎样的优先次序判断CSS样式的优先级的呢?
我们分以下几方面探讨:
样式的来源;选择器的特殊性;层叠原则。...
分类:
Web程序 时间:
2014-08-21 22:56:55
阅读次数:
476
hdu 4974 A simple water problem(数学题)...
分类:
其他好文 时间:
2014-08-21 22:56:45
阅读次数:
481
hdu 4975 A simple Gaussian elimination problem.(网络流,判断矩阵是否存在)...
分类:
其他好文 时间:
2014-08-21 22:56:35
阅读次数:
527
??
1.
操作符(++,+,+=,小于号等)重载
新建QT项目,编写头文件
#ifndef DIALOG_H
#define DIALOG_H
#include
#include
namespace Ui {
class Dialog;
}
//编写自己的Label
class myLabel
{
public: //一定要是共有的,才可以被调用
QLabel...
分类:
其他好文 时间:
2014-08-21 22:56:25
阅读次数:
535
Description
Triangles are polygons with three sides and strictly positive area. Lattice triangles are the triangles all whose vertexes have integer coordinates. In this problem you have to find the...
分类:
其他好文 时间:
2014-08-21 22:56:15
阅读次数:
443
解题报告
题目传送门
题意:
从n×n的矩阵的左上角走到右下角,每次只能向右和向下走,走到一个格子上加上格子的数,可以走k次。问最大的和是多少。
思路:
建图:每个格子掰成两个点,分别叫“出点”,“入点”,
入点到出点间连一个容量1,费用为格子数的边,以及一个容量∞,费用0的边。
同时,一个格子的“出点”向它右、下的格子的“入点”连边,容量∞,费用0。
源点向(0,0)的入点连一个容...
分类:
其他好文 时间:
2014-08-21 22:56:05
阅读次数:
503
链接:http://poj.org/problem?id=1465
题意:给一个数字n,和m个数字,找一个由这些数字组成的最小的n的倍数,如果不存在输出0。
思路:这题怎么想都想不到bfs上去,看了别人的解题报告,其实是用bfs来枚举,但是加了一个牛逼的剪枝:同余。即如果A%X==B%X,则(A*10+K)%X==(B*10+K)%X。
我们枚举m中每一个数字做这个K,实际上是枚举了...
分类:
其他好文 时间:
2014-08-21 22:55:55
阅读次数:
435
说明:
两个服务器:
192.168.0.22 A
192.168.0.3 B
数据库备份在A上
数据库在B上
在A上写:
exec sp_addlinkedserver 'ITSV2', ' ', 'SQLOLEDB', '服务器地址'
exec sp_addlinkedsrvlogin 'ITSV2', 'false',null, '用户...
分类:
其他好文 时间:
2014-08-21 22:55:45
阅读次数:
418