我的环境是eclipse (查了一下2013EEIDE)+tomcat7.0+Servlet3.0
项目名称:day08BookManageCase
servlet类是new servlet出来的如下代码,大部分代码省略,只留了注解部分。
/**
* Servlet implementation class FindAllServlet
*/
@WebServlet("/F...
分类:
其他好文 时间:
2014-05-15 01:23:03
阅读次数:
254
1:分类的使用场景:想对一个类,扩充一些功能,而又不改变原来类的模型,也不用继承,这时OC中的特有语法:分类可以做到;当然分类也是一个类,也需要声明和实现,声明在.h文件中,实现在.m文件中,格式如下//
声明@interface 类名 (分类名称)@end// 实现@implementation ...
分类:
其他好文 时间:
2014-05-12 03:18:19
阅读次数:
272
#import
@interface UIColor (RandomColor)
+(UIColor *) randomColor;
@end
#import "UIColor+RandomColor.h"
@implementation UIColor (RandomColor)
+(UIColor *) ...
分类:
移动开发 时间:
2014-05-09 13:57:22
阅读次数:
477
UTL_DBWS - Consuming Web Services in Oracle 10gIn a
previous article I presented a method for Consuming Web Services using a basic
SOAP implementation...
分类:
数据库 时间:
2014-05-09 05:16:54
阅读次数:
466
1 @interface NSString (reverse)2 3 -(NSString *)
reverseString;4 5 @end 1 @implementation NSString (reverse) 2 3 -(NSString *)
reverseString { 4 ...
分类:
其他好文 时间:
2014-05-08 23:54:31
阅读次数:
438
类别.h@interface
NSString(XXXXXX)-(NSInteger)getLen;@end.m@implementation
NSString(XXXXXX) -(NSInteger)getLen{ return
0;}@end//////////////////////////....
分类:
移动开发 时间:
2014-05-08 20:20:28
阅读次数:
365
Consider a simple function that adds the first
N integers. (e.g.sum(5) = 1 + 2 + 3 + 4 + 5 = 15).Here is a simple Python
implementation that uses recu...
分类:
其他好文 时间:
2014-05-08 17:35:09
阅读次数:
286
#import "RootViewController.h"@interface
RootViewController ()@end@implementation RootViewController{ UILabel
*txtInteger; UILabel *txtFloat; ...
分类:
其他好文 时间:
2014-05-07 19:59:59
阅读次数:
461
Abstract. One of the important features of the
boost polygon library is the implementation of the generic sweepline algorithm
to construct Voronoi dia...
分类:
其他好文 时间:
2014-05-07 13:43:36
阅读次数:
535
参考官方文档:http://dev.mysql.com/doc/refman/5.6/en/replication-implementation.html找个时间写一下。
分类:
数据库 时间:
2014-05-06 15:51:44
阅读次数:
379