码迷,mamicode.com
首页 >  
搜索关键字:groups @interface    ( 15105个结果
iOS 画图基础
基础要点:1,画图不可以在 ViewController 里,而是应该在一个 UIView 的子类中,比如新建一个 DrawView 继承自 UIView。2,覆盖 UIView 的 drawRect 方法,使得它画符合需要的图。#import @interface DrawView : UIVie...
分类:移动开发   时间:2014-08-26 21:17:06    阅读次数:220
[Java Basics2] Iterable, Socket, Reflection, Proxy
Parent interface of Collection: Iterable InterfaceA class that implements theIterablecan be used with the new for-loop.TheIterableinterface has only o...
分类:编程语言   时间:2014-08-26 19:33:06    阅读次数:272
第4课、UITableView专题(三)
一、本次小例子截图: 二、代码如下:#import @interface Product : NSObject//标题@property (strong, nonatomic) NSString * title;//描述@property (strong, nonatomic) NSString ....
分类:其他好文   时间:2014-08-26 19:04:56    阅读次数:242
ios数据库
#import #import #import "Student.h"@interface DataBaseHandler : NSObject{ // 添加一个成员变量 作用:指向本地的数据库文件,方便我们进行读写操作 sqlite3 *dbPoint;}// 把这个数据库处理类 写...
分类:移动开发   时间:2014-08-26 17:10:36    阅读次数:272
网络传输基本协议
介绍定义在配置管理中,终端服务特性提供了设备配置的管理接入接口和交互界面,为用户提供操作场所。主要包括:Console口登录Telnet Server/ClientSSH登录,支持Password、RSA验证、DSA验证支持定制User-interface,提供对登录用户多种方式的认证和授权功能文件...
分类:其他好文   时间:2014-08-26 17:09:46    阅读次数:414
JMX示例
HelloJMXMBean.javapackage jmx;/** * Created by george on 14-8-21. */public interface HelloJMXMBean { public String getName(); public void setNam...
分类:其他好文   时间:2014-08-26 17:02:06    阅读次数:158
jdk动态代理与cglib动态代理
JDK动态代理中包含一个类和一个接口:InvocationHandler接口:public interface InvocationHandler {public Object invoke(Object proxy,Method method,Object[] args) throws Throw...
分类:其他好文   时间:2014-08-26 16:53:56    阅读次数:243
PHP运行模式
PHP运行模式有4钟:1)cgi 通用网关接口(Common Gateway Interface)) 2) fast-cgi 常驻 (long-live) 型的 CGI 3) cli 命令行运行 (Command Line Interface) 4)web模块模式 (apache等web服务器运行的...
分类:Web程序   时间:2014-08-26 16:45:36    阅读次数:264
Spring HandlerInterceptor
1.SpringHandlerInterceptor 可以组成一个chain。这个接口有三个方法:public interface HandlerInterceptor { /** * Intercept the execution of a handler. Called after...
分类:编程语言   时间:2014-08-26 15:24:46    阅读次数:277
Java中抽象类和接口的区别
转自:http://dev.yesky.com/436/7581936.shtml 在Java语言中, abstract class 和interface 是支持抽象类定义的两种机制。正是由于这两种机制的存在,才赋予了Java强大的 面向对象能力。abstract class和interface之间...
分类:编程语言   时间:2014-08-26 13:29:26    阅读次数:261
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!