(一)制作静态类库 ? ? 为方便讲解,更方便与初期代码测试,新建一个项目,StaticLibraryExample? ? 新建Target。 假设我们需要制作的静态类库名为 IMIBase. 右击Targets,添加新Target。选择Static Library, 名字为IMIBase? ? 添 ...
分类:
其他好文 时间:
2017-07-31 17:27:01
阅读次数:
201
一、基本概念 1.Spring Spring是一个开源框架,Spring是于2003 年兴起的一个轻量级的Java 开发框架,由Rod Johnson 在其著作Expert One-On-One J2EE Development and Design中阐述的部分理念和原型衍生而来。它是为了解决企业应 ...
分类:
编程语言 时间:
2017-07-31 17:25:13
阅读次数:
260
http://study.163.com/course/introduction.htm?courseId=1003169025 http://study.163.com/course/courseMain.htm?courseId=1002830012 http://blog.csdn.net/t ...
分类:
编程语言 时间:
2017-07-30 20:02:16
阅读次数:
177
原地址http://213style.blogspot.com/2013/09/usb-human-interface-device.html 恩,發本文的原因是看到了以前畢業的朋友在旁邊的對話框問了一些問題,我想這些問題 不是三言兩語可以解釋完畢,但是我也不想又太細究 HID 內部描述表格的解說與 ...
分类:
其他好文 时间:
2017-07-30 14:53:00
阅读次数:
190
子句 SQL语句由子句构成,有些子句是必须的,有的是可选的 排序 order by可选子句可用于排序检索的数据 select prod_name from products order by prod_name; 通常排序的列包含在检索的列中,但是用非检索的列排序是完全合法的 按多个列排序 sele ...
分类:
编程语言 时间:
2017-07-30 14:52:06
阅读次数:
106
检索一列或多列 <1>select 列名1 [,列名2] [,列名3]... from 表名 <2>select prod_name from products; <3>select prod_id, prod_name, prod_price from products; <4>多条SQL语句必须 ...
分类:
其他好文 时间:
2017-07-30 14:47:38
阅读次数:
113
2205 据说题目很水 Accept: 199 Submit: 458Time Limit: 1000 mSec Memory Limit : 32768 KB Accept: 199 Submit: 458Time Limit: 1000 mSec Memory Limit : 32768 KB ...
分类:
其他好文 时间:
2017-07-30 11:36:50
阅读次数:
109
Traction – I keep doing this, but I really can’t help it. The brain can’t help but judge certain things by how they look prior to experiencing it firs ...
分类:
其他好文 时间:
2017-07-29 11:40:29
阅读次数:
205
Future and Promise are the two separate sides of an asynchronous operation. promise is used by the "producer/writer" of the asynchronous operation. fu ...
分类:
其他好文 时间:
2017-07-28 19:29:44
阅读次数:
113
为了能够灵活定义切入点位置,Spring AOP提供了多种切入点指示符。 execution———用来匹配执行方法的连接点 语法结构: execution( 方法修饰符 方法返回值 方法所属类 匹配方法名 ( 方法中的形参表 ) 方法申明抛出的异常 ) 其中红色字体的部分时不能省略的,各部分都支持通 ...
分类:
编程语言 时间:
2017-07-28 19:19:19
阅读次数:
181