码迷,mamicode.com
首页 >  
搜索关键字:new    ( 74660个结果
JavaScript特效实例004-自动关闭的广告窗口
实例004                  自动关闭的广告窗口 实例说明 当网页运行一定的时间后,自动关闭网页上指定的广告窗口。 技术要点 本实例主要应用window对象的setTimeout()方法和close()方法来实习.window对象的setTimeout()方法用于延迟执行某一操作。 实现过程 (1)要关闭的广告窗口。 new.html 打开新窗口...
分类:编程语言   时间:2015-05-09 19:03:20    阅读次数:159
Java新手学习笔记---字符串对象的相等
public class testobj_important { public static void main(String[] args) { String a = new String("abc"); String b = new String("abc");...
分类:编程语言   时间:2015-05-09 19:01:16    阅读次数:132
Java新手学习笔记---实例对象默认指针
public class testclass { public static void main(String[] args){ Student stu1 = new Student(); Comp c1 = new Comp(); c1.band="梁河县"; stu1.comp = c1...
分类:编程语言   时间:2015-05-09 18:58:05    阅读次数:137
Java新手学习笔记---多态
public class testpolymorphism { public static void main(String[] args) { animal a = new cat(); testVoice(a); //testVoice(new...
分类:编程语言   时间:2015-05-09 18:48:59    阅读次数:147
Spring - IOC简介
DI(Dependence Injection)依赖注入: userService依赖于容器注入的 这样拿的 这个过程由容器来控制,这个称为依赖注入。 IOC(Inverse of control)控制反转: 本来写程序,由我们自己控制的,要new一个对象什么都是我们自己控制的,后面交由spring管理,就不是我们控制的,是spring...
分类:编程语言   时间:2015-05-09 17:37:20    阅读次数:129
Eclipse中propedit插件安装(解决property中文问题)
EclipseHelp--Install New Software...Add...propedit --http://propedit.sourceforge.jp/eclipse/updates/
分类:系统相关   时间:2015-05-09 17:29:08    阅读次数:168
Java新手学习笔记---数组
public static void main(String[] args) { int[][] c = new int[1][3]; System.out.println(c.length); System.out.println(c[0]....
分类:编程语言   时间:2015-05-09 17:28:04    阅读次数:107
1212 New Year Bonus Grant
Problem Description  All programmers of Mocrosoft software company are organized in a strict subordination hierarchy. Every programmer has exactly one chief, except Bill Hates who is also the head of t...
分类:其他好文   时间:2015-05-09 16:40:13    阅读次数:90
判断是否下载指定客户端(遍历硬盘上的全部文件文件夹)
public void GetAllFiles(string fpath, string filetype)     {         //System.IO.DirectoryInfo dir = new System.IO.DirectoryInfo(fpath);  // 遍历指定文件类型的文件         //System.IO.FileInfo[] fs = dir....
分类:其他好文   时间:2015-05-09 16:39:41    阅读次数:113
Active Report 导出功能
在网上查了不少资料,有个讲解比较完整的方案,我在系统中一试,发现并不好用,在使用导出功能,必须是引用几个命名空间 接下来,导出功能就变得更加简单                 Dim xlsExport1 As New DataDynamics.ActiveReports.Export.Xls.XlsExport()                 Dim saveDlg As N...
分类:其他好文   时间:2015-05-09 16:36:30    阅读次数:154
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!