`
落叶换新叶
  • 浏览: 24358 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论
文章列表
1、Entry 存放节点数据   public class Entry<K,V> { private K k; private V v; public Entry(K k, V v) { this.k = k; this.v = v; } public K getK() { return k; } public void setK(K k) { this.k = k; } public V getV() { return v; } public void setV(V v) { this ...
<html> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script src="jquery-1.8.3.min.js"></script> <script type="text/javascript"> function move(_this,operation,_val) { var data_tr=$(_this) ...
public class LockTest { public static void main(String[] args) { LockTest test = new LockTest(); final DealMoney money = test.new DealMoney(); for(int i=0;i<10;i++) { new Thread(new Runnable() { @Override public void run() { money.getM(); } }).s ...
1.service层 @Component("orderService") public class OrderServiceImpl implements OrderService { @Autowired private OrderDao orderDao; public String queryOrderList(String param) { System.out.println("这是测试的:"+param+":"+orderDao.queryOrderInfo()); ...
public class QueueLinked<T> { private class Node<T> { T data; Node<T> next; Node<T> pre; public Node(T data) { this.data = data; } } Node<T> head = null; Node<T> tail = null; public void add(T data) { Node<T> node ...
angular采用的是1.6.5, 1.ng-model,ng-include,ng-click,ng-hide,ng-show,form表单的使用   <!doctype html> <html> <head> <script src="angular.js"></script> <title>第一个AngularJS程序</title> </head> <body> <div ng-ap ...
Global site tag (gtag.js) - Google Analytics