用例图所包含的元素如下: 1. 参与者(Actor)
表示与您的应用程序或系统进行交互的用户、组织或外部系统。用一个小人表示。 2. 用例(Use Case)
用例就是外部可见的系统功能,对系统提供的服务进行描述。用椭圆表示。 3. 子系统(Subsystem) 用来展示系统的一部分功能...
分类:
其他好文 时间:
2014-05-23 07:20:18
阅读次数:
229
Determine whether an integer is a palindrome.
Do this without extra space.if use recursive, like check the first dig and last
dig, then remove them, c...
分类:
其他好文 时间:
2014-05-23 02:45:15
阅读次数:
230
This post introduces the principle of the use
of switch-pattern.
分类:
编程语言 时间:
2014-05-22 16:15:39
阅读次数:
280
Microsoft Open Technologies has recently
released a Portable Class Libraryfor SQLite. Thanks to it, we can use SQLite in
the same way in all the suppo...
分类:
数据库 时间:
2014-05-22 15:06:51
阅读次数:
428
启动:net start mySql; 进入:mysql -u root -p/mysql
-h localhost -u root -p databaseName; 列出数据库:show databases; 选择数据库:use
databaseName; 列出表格:show tables...
分类:
数据库 时间:
2014-05-22 14:46:30
阅读次数:
344
linux的touch命令不常用,一般在使用make的时候可能会用到,用来修改文件时间戳,或者新建一个不存在的文件。1.命令格式:touch[选项]...文件...2.命令参数:-a或--time=atime或--time=access或--time=use 只更改存取时间。-c或--no-crea...
分类:
其他好文 时间:
2014-05-21 19:47:57
阅读次数:
297
In bash shell, when you use a dollar sign
followed by a variable name, shell expands the variable with its value. This
feature of shell is called para...
分类:
其他好文 时间:
2014-05-21 18:32:32
阅读次数:
332
1:使用SHOW语句找出在服务器上当前存在什么数据库: mysql SHOW DATABASES;
2:2、创建一个数据库MYSQLDATA mysql CREATE DATABASE MYSQLDATA; 3:选择你所创建的数据库 mysql USE
MYSQLDATA; (按回车键出现Datab...
分类:
数据库 时间:
2014-05-21 17:45:19
阅读次数:
247
介绍一个grid layout 顺序显示的代码
LayoutAnimation1.java
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use th...
分类:
其他好文 时间:
2014-05-21 16:58:47
阅读次数:
214
首先创建服务器数据库ASPState:C:\Windows\Microsoft.NET\Framework64\v4.0.30319>aspnet_regsql
-ssadd -sstype p -E -S .\SQLExpress执行数据库脚本Script:USE ASPStateGOCREATE...
分类:
数据库 时间:
2014-05-21 14:16:56
阅读次数:
320