以前学习UML的时候,用的是EA。最近在看Head First想着装一下Ration Rose吧,于是就着手开始装。本来网上关于Ration Rose的安装及破解教程很多,但是我在安装的过程却也遇到了很多问题,所以把整个安装及破解的过程整理一下,也给其他安装Rose的朋友们提供一个参考。...
分类:
其他好文 时间:
2014-10-14 14:58:58
阅读次数:
305
在Shell中,调用函数时可以向其传递参数。在函数体内部,通过 $n 的形式来获取参数的值,例如,$1表示第一个参数,$2表示第二个参数...带参数的函数示例:#!/bin/bashfunWithParam(){ echo "The value of the first paramter is...
分类:
系统相关 时间:
2014-10-14 06:11:17
阅读次数:
248
一楼 敬boss~~~~~~~~~~~BT~~~~~~~~~~~~find something interesting!!!奇丑无比的模板 我需要好好收拾一下它了.....~~~~~~~~~~~UI~~~~~~~~~~~~逗比无比的地址 我需要在好好考虑一下它了.......~~~~~~~~~~~Y...
分类:
其他好文 时间:
2014-10-14 03:36:08
阅读次数:
183
以下内容主要摘自[1,2](1)In javascript,functions are first-class objects, which means functions can be used in a first-class manner like objects, since they ar...
分类:
编程语言 时间:
2014-10-14 00:49:27
阅读次数:
290
启动Weblogic时,报,解决方法:I ran into this error the first time I restarted Weblogic on one of my installs, the only reference that I was able to find is the ...
分类:
Web程序 时间:
2014-10-13 22:04:37
阅读次数:
321
HTTPSQS(HTTPSimpleQueueService)是一款基于 HTTP GET/POST 协议的轻量级开源简单消息队列服务,使用 Tokyo Cabinet 的 B+Tree Key/Value 数据库来做数据的持久化存储。
队列(Queue)又称先进先出表(First In First...
分类:
Web程序 时间:
2014-10-13 18:43:56
阅读次数:
166
一棵树 开始每个点的权值都为1
2种操作1.将第i个点的权值增加x 2.求u到v这条路上最大的权值
树链剖分基础题
#include
#include
#include
using namespace std;
const int maxn = 100010;
struct edge
{
int v, next;
}e[maxn*2];
int first[maxn], cnt;...
分类:
其他好文 时间:
2014-10-13 17:54:29
阅读次数:
232
iota:Fills the range[first, last)with sequentially(循环的) increasing values, starting withvalueand repetitively(重复地) evaluating++value.Parameters first....
分类:
编程语言 时间:
2014-10-13 14:34:19
阅读次数:
160
Hello.hclassCHelloApp:publicCWinApp{public:virtualBOOLInitInstance();};classCMainFrame:publicCFrameWnd{public:CMainFrame();CRectm_rectBubble[50];intm_nBubbleCount;public:voidDrawEllipse(CRectrect);protected:afx_msgvoidOnPaint();afx_msgvoidOnLButtonDown(UINT..
分类:
编程语言 时间:
2014-10-13 11:50:20
阅读次数:
172
在Makefile中我们经常看到 = := ?= +=这几个赋值运算符,那么他们有什么区别呢?我们来做个简单的实验
新建一个Makefile,内容为:
ifdef DEFINE_VRE
VRE = “Hello World!”
else
endif
ifeq ($(OPT),define)
VRE ?= “Hello World! First!”
endif...
分类:
其他好文 时间:
2014-10-13 11:04:59
阅读次数:
170