2015年9月23日
摘要:
#include using std::cout;using std::endl;//定义结构struct Box{ double length; double width; double height;};double volume(const Box& aBox);int main(){ Box...
阅读全文
posted @ 2015-09-23 21:34
gcczhongduan
阅读(124)
推荐(0)
摘要:
本软件解决的问题:彻底解决软件进程死机和自己主动退出的情况。特别是对于通信值守软件,进行数据接受,处理。入库,须要一直在线,可是人不可能天天盯着软件是否执行。而一旦软件自己主动退出或者死机,那么会丢失大量数据。造成损失,而软件出现这些状况仅仅是偶然现象,可能十天个把月都出现不了一次。可是一旦出现,...
阅读全文
posted @ 2015-09-23 20:46
gcczhongduan
阅读(112)
推荐(0)
摘要:
#ifndef HANDLE_H#define HANDLE_H #include "Animal.h"template class Handle{ public: Handle(T *ptr); Handle(const Handle &other); ...
阅读全文
posted @ 2015-09-23 19:20
gcczhongduan
阅读(735)
推荐(0)
摘要:
第一步:输入Spring jar 包裹Spring核心包(4个)日志包(2个)jdbc模板支持(1个)spring-jdbc-3.2.0.RELEASE.jar模板相关事务处理包(1个)spring-tx-3.2.0.RELEASE.jarORM框架模板支持(1个)spring-orm-3.2.0....
阅读全文
posted @ 2015-09-23 18:13
gcczhongduan
阅读(181)
推荐(0)
摘要:
人工模拟获取latch任意地dump一latches结构文件:SQL> oradebug dump latches 10ORA-00074: no process has been specifiedSQL> oradebug setmypidStatement processed.SQL> ora...
阅读全文
posted @ 2015-09-23 17:25
gcczhongduan
阅读(255)
推荐(0)
摘要:
只是最近才知道javaGUI编程。我认为,独立撰写一个记事本,要在其中的对话框过程button设置监视器。但找了一下api相应的方法已被发现,只有找到:Returns:an integer indicating the option selected by the usershowConfirmDi...
阅读全文
posted @ 2015-09-23 16:32
gcczhongduan
阅读(1192)
推荐(0)
摘要:
昨天我们用JQuery.Ajax解释JQuery样通过Ajax实现异步通信。为了更好的编织知识网,今天我们用一个Demo演示怎样用javascript实现原生Ajax的异步通信。 原生Ajax实现异步通信分为下面5步: 1.创建XMLHttpRequest对象。 2.注冊回调方法。 3.设置和s...
阅读全文
posted @ 2015-09-23 15:00
gcczhongduan
阅读(172)
推荐(0)
摘要:
Starting with the number 1 and moving to the right in a clockwise direction a 5 by 5 spiral is formed as follows:2122 23 242520 78 91019 6 12 1118 54 ...
阅读全文
posted @ 2015-09-23 14:00
gcczhongduan
阅读(156)
推荐(0)
摘要:
http://my.oschina.net/jgy/blog/125503拷贝mavne安装文件夹conf以下的settings.xml到用户主文件夹下改动改文件F:/Maven/repository改变本地maven仓库的路径 mirrorId repositoryId Human Readab...
阅读全文
posted @ 2015-09-23 12:49
gcczhongduan
阅读(139)
推荐(0)