C#自定义泛型类用得最广泛的就是在集合(Collection)中。本文介绍了C#自定义泛型Generic的用法。AD:51CTO学院:IT精品课程在线看!Generic是Framework
2.0的新元素,中文名字称之为“泛型” ,特征是一个带有尖括号的类,比如ListC#自定义泛型类用得最广泛,就...
分类:
其他好文 时间:
2014-05-01 13:32:57
阅读次数:
286
using System;using System.Collections.Generic;using
System.ComponentModel;using System.Co...
分类:
其他好文 时间:
2014-05-01 12:25:41
阅读次数:
390
日本程序员norahiko,写了一个排序算法的动画演示,非常有趣。这个周末,我就用它当做教材,好好学习了一下各种排序算法。排序算法(Sorting
algorithm)是计算机科学最古老、最基本的课题之一。要想成为合格的程序员,就必须理解和掌握各种排序算法。目前,最常见的排序算法大概有七八种,其中"...
分类:
编程语言 时间:
2014-05-01 11:33:13
阅读次数:
595
1、检查是否关闭防火墙[root@gaosheng ~]# service iptables
statusFirewall is stopped.View
Code如果防火墙没有关闭,最好关闭;生产环境下,视具体情况而定.2、上传weblogic安装包wls1036_generic.jar此步骤略3...
分类:
Web程序 时间:
2014-05-01 10:36:19
阅读次数:
698
今天写的特别简单的代码,大体是一个模式选择,从控制台读入一个数,然后做出相应的选择.
代码如下:using System;using System.Collections.Generic;using System.Linq;using
System.Text;using System.Thre...
分类:
其他好文 时间:
2014-05-01 08:41:35
阅读次数:
340
using System;using System.Collections.Generic;using
System.Web;using System.Web.UI;using System.Web.UI.WebControls;using
System.IO;using System.Drawin...
分类:
Web程序 时间:
2014-05-01 08:07:45
阅读次数:
408
package algorithm.sort;public class QuickSort {
public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4,
9, 8, 6, 1}; sort(a); ...
分类:
其他好文 时间:
2014-05-01 03:33:20
阅读次数:
330
package algorithm.sort;public class CountingSort {
public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4,
9, 8, 6, 1}; int[] ...
分类:
其他好文 时间:
2014-05-01 03:25:05
阅读次数:
252
package algorithm.sort;public class HeapSort {
public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4,
9, 8, 6, 1}; sort(a); p...
分类:
其他好文 时间:
2014-05-01 03:24:04
阅读次数:
332
在本次马拉松中,你将学会
用imread读取图片用nameWindow和imshow展示图片cvtColor彩色图像灰度化imwrite写图像Luv色彩空间转换
图像读取接口
image = imread(argv[1], CV_LOAD_IMAGE_COLOR);
CV_LOAD_IMAGE_UNCHANGED (CV_LOAD_IMAGE_GRAYSCALE ( 0...
分类:
其他好文 时间:
2014-04-27 22:47:19
阅读次数:
342