原文地址:http://www.aichengxu.com/view/1040714
这几天一直在学习UML的十种图,之前是对UML十种图的主要概念进行理解,现在对其及其之间的关系进行理解
学习。
一、用例图(Use Case Diagram):
最开始学习的第一个图是用例图,用例图主要用于为系统的功能需求建模,它主要描述系统功能,也就是从...
分类:
其他好文 时间:
2016-04-22 21:02:31
阅读次数:
475
1,显示当前的数据库: showdatabases
2,选择一个数据库:use binbin:
3, 在数据库中创建列表:
Create table dept
(
deptno int primary key,
dname varchar(14),
loc varchar (13)
);
4,显示当前数据表,show tables:...
分类:
数据库 时间:
2016-04-22 20:41:53
阅读次数:
211
题目:
Given a linked list, swap every two adjacent nodes and return its head.
For example,
Given 1->2->3->4, you should return the list as 2->1->4->3.
Your algorithm should use only constant...
分类:
其他好文 时间:
2016-04-22 19:46:19
阅读次数:
131
现如今JavaScript早已不仅仅是网页特效脚本了,更多是用来构建大规模的Web应用,所以语言规范的制定者们也逐渐意识到要对JS进行语法方面的规范,并且有意地引导开发者编程习惯,消除一些不规范和不安全的语法,进而更好的满足以后大规模开发的要求,ES5规范中的严格模式就是其中重要的一环,今天我们就来详细介绍一下严格模式的使用以及它对语法的种种限制和规范。
启用严格模式只需使用'use strict';这条语句即可,对于支持严格模式的浏览器,在声明'use strict';语句之后的代码都将会在严格模式的限制...
分类:
其他好文 时间:
2016-04-22 19:28:21
阅读次数:
226
In JavaScript, functions are first-class objects; that is, functions are of the type Object and they can be used in a first-class manner like any othe ...
分类:
编程语言 时间:
2016-04-22 18:37:25
阅读次数:
249
$arr=Array ( 'contract_type' => Array ( '0' => 0, '1' => 0, '2' => 0,'3' => 0, ), 'use_contract' => Array ( '0' => 7, '1' ...
分类:
编程语言 时间:
2016-04-22 16:06:25
阅读次数:
251
WAMP安装好后,mysql密码是为空的,那么要如何修改呢?其实很简单,通过几条指令就行了,下面我就一步步来操作。 首先,通过WAMP打开mysql控制台。 提示输入密码,因为现在是空,所以直接按回车。 然后输入“use mysql”,意思是使用mysql这个数据库,提示“Database chan ...
分类:
数据库 时间:
2016-04-22 15:59:33
阅读次数:
183
var SimplePropertyRetriever = { getOwnEnumerables: function (obj) { return this._getPropertyNames(obj, true, false, this._enumerable); // Or could use ...
分类:
其他好文 时间:
2016-04-22 13:35:43
阅读次数:
123
Domino Effect Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 10325 Accepted: 2560 Description Did you know that you can use domino bones f ...
分类:
其他好文 时间:
2016-04-21 21:55:55
阅读次数:
204
1. openwebkitsharp demo的运行 1. 查看说明How to use.txt 文档基础没有问题 2. c# 调用JS的方法 注意HTML当中关联的JS文件一定要存在。openwebkitsharp 当中JSTest文件page.html所关联的JS路径: 所有一定要将HelloW... ...
分类:
Windows程序 时间:
2016-04-21 20:32:51
阅读次数:
1087