using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Threading; using System.Net; names ...
分类:
编程语言 时间:
2016-04-06 11:24:11
阅读次数:
248
同组人:郝哲 黄云龙 评价:在这次作业完成中我们都积极地查询了有关资料,并向大神咨询获得了帮助,学习的过程中更更加深入的了解了C#的编写。 感谢:感谢同组同学的帮助,感谢大神的辅导,感谢百度贴吧大神的讲解。 //事件响应 using System; using System.Collections. ...
分类:
其他好文 时间:
2016-04-06 11:17:14
阅读次数:
152
1 using System; 2 3 namespace 类_阻止派生类重写虚成员 4 { 5 // 声明一个抽象类Animal(用abstract关键字声明抽象类) 6 public abstract class Animal 7 { 8 // 基类的抽象方法Voice(); 功能在派生类实现 ...
In this Document Purpose Scope Details APPLIES TO: Oracle Database - Enterprise Edition - Version 11.1.0.6 and later Web Services - Version 10.1.3.1.0 ...
分类:
数据库 时间:
2016-04-06 10:59:12
阅读次数:
239
资源介绍: 详细说明:slf4j-api-1.5.8.jar,jsp开发中使用FCK编辑器,要用到一个jar包-slf4j-api-1.5.8.jar, jsp development using the FCK editor, use a jar package 详细说明:slf4j-api-1. ...
分类:
编程语言 时间:
2016-04-06 10:51:21
阅读次数:
410
c# 正则表达式笔记 估计要写几天 看得一个不错的正则教程包括字符串教程 C#字符串和正则表达式参考手册.pdf 正则所需要的命名空间是 using System.Text.RegularExpressions 它包含了8个类,用得最多是的Regex; Regex不仅可以用来创建正则表达式,而且提供 ...
Sort a linked list in O(n log n) time using constant space complexity. Example Given 1-3->2->null, sort it to 1->2->3->null. /** * Definition for List ...
分类:
其他好文 时间:
2016-04-06 08:12:15
阅读次数:
114
这里就只放自己刷的题目了,毕竟是弱弱哒 HDU2546:饭卡 1 #include <algorithm> 2 #include <cstdio> 3 4 using namespace std; 5 6 int main() 7 { 8 int n,m; 9 while (~scanf("%d", ...
分类:
其他好文 时间:
2016-04-05 23:07:37
阅读次数:
462
函数指针(全局函数/类成员函数)、函数对象(Function object)一. 函数指针类型为全局函数.#include "stdafx.h"#include <iostream>using namespace std;class TestAction;typedef void (*fp)(int ...
分类:
其他好文 时间:
2016-04-05 19:17:28
阅读次数:
180
独一无二 静态成员变量 作者:HolyFire 我们学习C++的时候知道静态变量的特性,他不是临时变量,在编译期间就已经产成。用一个例子就能说明问题。 #include <iostream> using namespace std; class A{ public: A(){ cout << "Ca ...
分类:
其他好文 时间:
2016-04-05 19:13:34
阅读次数:
209