上一页 1 ··· 12 13 14 15 16
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace 数组排序 8 { 9 阅读全文
posted @ 2016-03-17 23:05 C/C++/Python/Java 阅读(1052) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 //////////////////////////////////////////////////// 6 // 方法重载: 7 // 1. 方法名称必须相同 8 // ... 阅读全文
posted @ 2016-03-16 11:54 C/C++/Python/Java 阅读(1339) 评论(0) 推荐(0) 编辑
摘要: SQLServer中服务器角色和数据库角色权限详解 转自:http://blog.csdn.net/e_online/article/details/4597957 角色 当几个用户需要在某个特定的数据库中执行类似的动作时(这里没有相应的Windows用户组),就可以向该数据库中添加一个角色(rol 阅读全文
posted @ 2016-03-12 14:22 C/C++/Python/Java 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Windows.Forms; 6 7 namespace 异常处理_try_catch 8 { 9 class Program 10 { 11 ... 阅读全文
posted @ 2016-03-11 16:55 C/C++/Python/Java 阅读(229) 评论(0) 推荐(0) 编辑
摘要: struct_Operator_Overloading.cs Program.cs 阅读全文
posted @ 2016-03-09 17:13 C/C++/Python/Java 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 1 -- 1.创建数据库 2 create database TestDB1 3 go 4 5 create database TestDB2 6 go 7 8 -- 2.创建测试表:在数据库TestDB1/TestDB2中创建表TestTable 默认dbo schema 9 use TestDB1 10 go 11 create table T... 阅读全文
posted @ 2016-03-08 15:39 C/C++/Python/Java 阅读(735) 评论(0) 推荐(0) 编辑
摘要: /* * 结构体: * 1. 结构体中不可以为字段赋值(初始化); * 2. 结构体中一直存在隐式的无参构造函数, 不能显示的 * 定义无参构造函数; * 3. 结构体的构造函数中必须要为所有的字段赋值 * 4. 创建结构体对象可以不适用new()关键字,而类则必须 * 使用new()关键字 * 5 阅读全文
posted @ 2016-03-06 16:40 C/C++/Python/Java 阅读(761) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16