`
regale
  • 浏览: 10508 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
文章分类
社区版块
存档分类
最新评论
文章列表
C#有using 控制结构 如下: using (TextReader textReader = new StreamReader(filename)) { return textReader.ReadLine(); } 用scala实现如下 object Control { def using[A <: {def close(): Unit}, B](param: A)(f: A => B): B = try { f(param) } finally { param.close() } import scala.collection.mutable.ListBuffer def ...
1 现状:接口和实现分离主,一个功能要两个以上的文件完成,项目中文件多,乱,不利用阅读和调试 改进:接口和实现可以合一,增加默认实现 public interface MyService {    int add(int i,int j); }:{    int add(int i,int j){        return i+j;     } }: MyServiceImpl1{ int add(int i,int j){        return (i+j)*2;    } }: MyServiceImpl2{ int add(int i,int j){        return ...
三只大老虎和三只小老虎过河 三只大老虎分别是A.B.C三只小老虎分别是1.2.3,只有一条船,一次只能坐两只,A和1是母子俩,B和2是母子俩,C和3母子俩,只要任何一个母亲离开小老虎,小老虎都会被吃掉. 问题补充:大老虎都会划船 三只小老虎中只有1会划船 设大老虎为ABC,相应的小老虎为abc,其中c会划船。 package test; import java.util.HashMap; import java.util.List; import java.util.Map; public class TigerRiver { public static  int[]tigersteps ...
1新建一个总在最上面的Shell private Shell newshell; public void init(final Shell splash) { newshell=new Shell(splash.getDisplay(),SWT.ON_TOP |SWT.TOP); // Store the shell super.init(splash); preSpring(); // Configure the shell layout configureUISplash(); // Create UI createUI(); 2 新建的Shell最小化并打 ...
以前一直用myeclipse,听说IDEA8不错,下了一个试试看,不知道是IDEA8太高级还是我智商不够.用的真TMD不爽. 首先新建一个javaA工程,先中web  application和struts2,javaee persistentce ,spring,完成。 先从网上下了半天spring.jar,strtus.jar。下的我很郁闷!这玩意我电脑里可一把一把的全是免费的。下完了给建了几个目录lib,out都在根目录下面,WEB-INF下面空空的,该项建的不建,不该建的瞎jb建! 把struts.xml加了一点东西,<package name="blog"    ...
Global site tag (gtag.js) - Google Analytics