码迷,mamicode.com
首页 >  
搜索关键字:implements    ( 2581个结果
并发 错误 java.lang.IllegalMonitorStateException: current thread not owner 分析
public class ThreadTest implements Callable { public String call() throws Exception { // TODO Auto-generated method stub wait(10000); return "hello"; } }调用代码: public static void main(Stri...
分类:编程语言   时间:2014-05-11 21:27:24    阅读次数:533
下压堆栈(链表实现)
import java.util.Iterator; import java.util.Scanner; public class Stack implements Iterable { private Node first;// 栈顶 private int N;// 元素数量 // 定义结点的嵌套类 private class Node{ Item item; Node nex...
分类:其他好文   时间:2014-05-11 13:20:22    阅读次数:257
Servlet三种实现方式
Servlet三种实现方式:实现Servlet接口,继承GenericServlet ,继承HttpServlet。1、实现Servlet接口:import javax.servlet.*;import java.io.*;public class Hello implements Servlet{...
分类:其他好文   时间:2014-05-10 02:04:56    阅读次数:342
最小二乘拟合
拟合函数```matlabfunction C = lspoly(X,Y,M)%This funciton implements the Least Squares Polynomial%By abcat at 2014.5.7%Input -X is the 1*n abscissa vecto....
分类:其他好文   时间:2014-05-09 10:41:12    阅读次数:271
Bluetooth
Android provides a default Bluetooth stack, BlueDroid, that is divided into two layers: The Bluetooth Embedded System (BTE), which implements the core...
分类:其他好文   时间:2014-05-09 10:18:47    阅读次数:518
111
public class SelectPicActivity extends Activity implements OnClickListener{/**** 使用照相机拍照获取图片*/public static final int SELECT_PIC_BY_TACK_PHOTO = 1;/**...
分类:其他好文   时间:2014-05-09 05:17:46    阅读次数:407
Java Comparator
1 Arrays.sort(points, new comparator());2 3 public static class comparator implements Comparator {4 public int compare(Point p1, Point p2) {5 ...
分类:编程语言   时间:2014-05-05 23:32:10    阅读次数:444
Flume-NG源码阅读之HBaseSink
关于HBase的sink的所有内容均在org.apache.flume.sink.hbase包下。 每个sink包括自己定制的,都extends AbstractSink implements Configurable。 一、首先是configure(Context context)方法。该...
分类:其他好文   时间:2014-05-05 10:55:40    阅读次数:462
OnClickListener两种监听方法
1 //1种:接口OnClickListener ,在onclick响应 2 public class MainActivity extends Activity implements OnClickListener { //这个类前提要接口OnClickListener 3 4 ...
分类:其他好文   时间:2014-05-04 11:09:30    阅读次数:194
Java web Session 监听类。
public class SessionListener implements HttpSessionListener { static Logger log = Logger.getLogger( SessionListener.class.getName()); private static Map map = new HashMap(); ...
分类:编程语言   时间:2014-04-30 22:31:38    阅读次数:397
2581条   上一页 1 ... 256 257 258 259 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!