摘要: 想要理解这里有必要先将泛型类学习充分。这里讲解的是泛型类继承类的类型和静态成员。在前面C#学习之泛型中,创建的LinkList类实现了IEnumerable接口。即泛型类也可以实现泛型的接口,也可派生自一个类。泛型类也可以派生自泛型基类。public class Base{}public class... 阅读全文
posted @ 2014-09-21 11:27 SYTM 阅读(488) 评论(0) 推荐(0) 编辑
摘要: 在泛型类的描述中还会有时需要很多限制,例如对待一个泛型类型,在类中定义一个变量需要初始化时,不能确定是用Null还是0.因为不能够确定它是值类型还是引用类型,这时可以用到default语句(下面有介绍)。下面的是一个文档管理器的详细代码和必要详细的解释。 1 //定义一个具有内容和标题属性的接口 ... 阅读全文
posted @ 2014-09-21 11:00 SYTM 阅读(2132) 评论(0) 推荐(1) 编辑
摘要: 想要把泛型搞明白,最好先弄明白下面的代码实例本实例是建立了两个类,然后在类中可以添加任意类型的值,并且可以利用foreach语句读出 1 //第一个节点类,放在一个文件中 2 using System; 3 using System.Collections.Generic; 4 using ... 阅读全文
posted @ 2014-09-21 09:45 SYTM 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 1 //主函数//主函数里面调用的类都在后面有具体描述 2 using System; 3 using System.Collections.Generic; 4 using System.Linq; 5 using System.Text; 6 using System.Thread... 阅读全文
posted @ 2014-09-20 20:55 SYTM 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 1 #include"cv.h" 2 #include"highgui.h" 3 using namespace cv; 4 void CVFILTER2D(IplImage * img, IplImage *dst); 5 void CVCOPYMAKEBORDER(IplImage ... 阅读全文
posted @ 2014-09-20 19:42 SYTM 阅读(319) 评论(0) 推荐(0) 编辑
摘要: 1 #include"head.h" 2 //cvResize() 3 /*int main() 4 { 5 IplImage *img = cvLoadImage("e:/picture/Wife4.jpg"); 6 7 IplImage *big_img = cvCr... 阅读全文
posted @ 2014-09-19 22:34 SYTM 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 添加网站到收藏夹: Javascript:window.external.addFavorite('http://www.webnet.net','webname')关闭窗口:Javascipt:window.close()弹出提示窗口:javascript:alert('text')设置本网站为主... 阅读全文
posted @ 2014-09-03 18:02 SYTM 阅读(673) 评论(0) 推荐(0) 编辑
摘要: 1,读取照片(imread())2,处理照片(cvtcolor())3,命名窗口(namewindow())4,显示照片(imshow())5,保存照片(imwrite()) 1 #include 2 #include"cv.h"//包含基本的图片功能 3 #include"highgui.h"//... 阅读全文
posted @ 2014-08-24 21:45 SYTM 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 安装opencv文件时若需要cmake编译,如果中间出现解决办法是:在opencv的文件中找到包含cmakelist.txt的文件夹,把where is the source code:的路径改成它。然后在where to build the binaries 的路径中写上任何一个不存在的路径,当出... 阅读全文
posted @ 2014-08-24 20:42 SYTM 阅读(796) 评论(0) 推荐(0) 编辑
摘要: to get the ans of how many roads at most that can be built between two line without intersection of roads,we need sort the input sequence at ont edge ... 阅读全文
posted @ 2014-08-16 16:44 SYTM 阅读(208) 评论(0) 推荐(0) 编辑