码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
运用servlet3.0注解报404错误
我的环境是eclipse (查了一下2013EEIDE)+tomcat7.0+Servlet3.0 项目名称:day08BookManageCase servlet类是new servlet出来的如下代码,大部分代码省略,只留了注解部分。 /**  * Servlet implementation class FindAllServlet  */ @WebServlet("/F...
分类:其他好文   时间:2014-05-15 01:23:03    阅读次数:254
黑马程序员-OC特有语法:分类category,给NSString增加方法计算字符串中数字的个数
1:分类的使用场景:想对一个类,扩充一些功能,而又不改变原来类的模型,也不用继承,这时OC中的特有语法:分类可以做到;当然分类也是一个类,也需要声明和实现,声明在.h文件中,实现在.m文件中,格式如下// 声明@interface 类名 (分类名称)@end// 实现@implementation ...
分类:其他好文   时间:2014-05-12 03:18:19    阅读次数:272
iOS 生成随机颜色(UIColor)
#import @interface UIColor (RandomColor) +(UIColor *) randomColor; @end #import "UIColor+RandomColor.h" @implementation UIColor (RandomColor) +(UIColor *) ...
分类:移动开发   时间:2014-05-09 13:57:22    阅读次数:477
UTL_DBWS包的创建和用法
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
Objective C 代码片段(类别)
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
IOS 类别与扩展的区别 (category & extensions)
类别.h@interface NSString(XXXXXX)-(NSInteger)getLen;@end.m@implementation NSString(XXXXXX) -(NSInteger)getLen{ return 0;}@end//////////////////////////....
分类:移动开发   时间:2014-05-08 20:20:28    阅读次数:365
What is tail-recursion
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
UserDefaultes 数据存储使用
#import "RootViewController.h"@interface RootViewController ()@end@implementation RootViewController{ UILabel *txtInteger; UILabel *txtFloat; ...
分类:其他好文   时间:2014-05-07 19:59:59    阅读次数:461
Visulalization Boost Voronoi in OpenSceneGraph
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
mysql之主从复制原理
参考官方文档:http://dev.mysql.com/doc/refman/5.6/en/replication-implementation.html找个时间写一下。
分类:数据库   时间:2014-05-06 15:51:44    阅读次数:379
1803条   上一页 1 ... 177 178 179 180 181 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!