码迷,mamicode.com
首页 >  
搜索关键字:method    ( 13407个结果
NIO2 (1) --- TCP (blocking)
這一篇要說明的是,如何使用 JDK 7 推出的 NIO 2 進行 TCP 程式開發,底下的類別圖只是其中較重要的部份,要詳細了解各類別關係,及各類別的 method,請查閱 API Documents。NIO 2 同時提供 blocking 和 non-blocking 的模式,blocking 模...
分类:其他好文   时间:2014-06-04 16:38:07    阅读次数:306
ASP.NET MVC学前篇之Lambda表达式、依赖倒置
ASP.NET MVC学前篇之Lambda表达式、依赖倒置前言 随着上篇文章的阅读,可能有的朋友会有疑问,比如(A.Method(xxx=>xx>yy);)类似于这样的函数调用语句,里面的xxx=>xx>yy这些到底是怎么用的?依赖倒置原则的实现也会在本篇幅的最后来粗略的讲解一下。 本篇没有核心的主...
分类:Web程序   时间:2014-06-04 16:21:13    阅读次数:244
struts过滤器的原理
struts就是充当拦截器(过滤器)的作用。在web.xml配置过滤器, 1 package cn.itcast.framework.core; 2 3 import java.io.IOException; 4 import java.lang.reflect.Method; 5 im...
分类:其他好文   时间:2014-06-03 14:33:00    阅读次数:294
事件回调
Listener是一个接口An event listener is an interface in theViewclass that contains a single callback method. These methods will be called by the Android fra...
分类:其他好文   时间:2014-06-02 21:33:20    阅读次数:265
Android中 与数据库有关的两个废除的方法
占没有查到替换的方法,先记着!The method startManagingCursor(Cursor) from the type Activity is deprecatedThe constructor SimpleCursorAdapter(Context, int, Cursor, St...
分类:移动开发   时间:2014-06-02 16:05:59    阅读次数:309
何时使用Delegate或接口
在以下情况下使用Delegates很有用:调用一个单一方法;一个类要进行方法规范(method specification)的多种执行;使用一个静态方法来执行规范;想获得类似事件设计的模式;调用者没有必要知道或获得方法定义的对象;执行的提供者想将规范的执行“分发(hand out)”成一些可供选择的...
分类:其他好文   时间:2014-06-02 13:39:41    阅读次数:309
SEMAT[软件工程方法和理论 Software Engineering Method and Theory]
Agile software developmentAgile software developmentis a group ofsoftware development methodsbased oniterative and incremental development, in which r...
分类:其他好文   时间:2014-06-02 10:18:52    阅读次数:201
myeclipse 10 载入新的项目报错Cannot return from outside a function or method
myeclipse 10 载入新的项目报错Cannot return from outside a function or method解决方法:方法一:window -->preferences -->myeclipse -->validation -->javascript validator ...
分类:系统相关   时间:2014-06-02 08:47:49    阅读次数:332
Java 多线程编程两个简单的例子
/** * @author gao */ package gao.org; public class RunnableDemo implements Runnable{ @Override public void run() { // TODO Auto-generated method stub for(int i=0;i<10;i++){ System.out.pri...
分类:编程语言   时间:2014-06-01 18:12:33    阅读次数:441
复习struts2+jsp上传文件
有个form<formaction="upload"id="upForm"method="post"> <inputtype="file"id="att"name="p_w_upload"accept="img/jpeg"> <inputtype="submit"value="ok"> </form>看actionpackageaction; publicClassUploadActionextendsActionSupport(){ privateFil..
分类:Web程序   时间:2014-06-01 16:28:36    阅读次数:300
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!