上一页 1 ··· 8 9 10 11 12
摘要: 警告: [SetPropertiesRule]{Context/Loader} Setting property 'useSystemClassLoaderAsParent' to 'false' did not find a matching property. 意思是:警告(SetPropert 阅读全文
posted @ 2017-06-26 14:47 A小小高 阅读(3095) 评论(0) 推荐(0) 编辑
摘要: 警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:web.project' did not find a match 阅读全文
posted @ 2017-06-26 14:33 A小小高 阅读(293) 评论(0) 推荐(0) 编辑
摘要: 1.普里姆算法介绍: 普里姆(Prim)算法,是用来求加权连通图的最小生成树的算法。 基本思想 对于图G而言,V是所有顶点的集合;现在,设置两个新的集合U和T,其中U用于存放G的最小生成树中的顶点,T存放G的最小生成树中的边。 从所有uЄU,vЄ(V-U) (V-U表示出去U的所有顶点)的边中选取权 阅读全文
posted @ 2017-06-16 17:10 A小小高 阅读(477) 评论(0) 推荐(0) 编辑
摘要: throws和throw区别 throws是用来声明一个方法可能抛出的所有异常信息,throws是将异常声明但是不处理,而是将异常往上传,谁调用我就交给谁处理。 而throw则是指抛出的一个具体的异常类型 关键字:throw,throws,try和catch的用法如下: theows操作代码: th 阅读全文
posted @ 2017-06-13 17:46 A小小高 阅读(419) 评论(0) 推荐(0) 编辑
摘要: package cn.mldn.lxh.dbc; import java.sql.Connection; import java.sql.DriverManager; public class DatebaseConnection { private static final String DBDRIVER= "com.microsoft.sqlserver.jdbc.S... 阅读全文
posted @ 2017-06-13 16:20 A小小高 阅读(1146) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12