### Host Database## localhost is used to configure the loopback interface# when the system is booting.Do not change this entry.127.0.0.1 localhost255....
分类:
其他好文 时间:
2014-07-24 21:47:13
阅读次数:
553
BLCR技术到底是什么技术?我没空和你乱扯,自己去看该官方网站的介绍:http://crd.lbl.gov/groups-depts/ftg/projects/current-projects/BLCR首先要下载BLCR的源代码,可以在上面提到的官网上下载,现在最新版本是0.8.5的,目前已经有RP...
分类:
其他好文 时间:
2014-07-24 17:34:35
阅读次数:
180
给一个已有的类添加 category@interface ClassName (CategoryName)- (NSString *) Nothin_additionalMmethod;@end可以在category中给类添加扩展方法category通常声明在单独的.h文件中,实现category在...
分类:
其他好文 时间:
2014-07-24 17:02:05
阅读次数:
212
package?com.sadhu;
import?java.util.*;
/**
接口
接口中不能有字段
所有的方法都是公共的
可以定义常量
接口是多继承的,一个类可以继承多个接口。
接口中不能有实现的方法。可以认为是纯的抽象类。
接口不能...
分类:
编程语言 时间:
2014-07-24 10:54:44
阅读次数:
227
我的博文的前一篇讲解了PHP的反射机制是怎么回事,如果读者还不清楚反射机制,可以搜索下或者看我的博文,都是不错的选择,我们开始讲解一下怎么用PHP来实现插件机制。所谓插件机制,就是我们定义一个接口,即我们定义一个interface,然后第三方插件就去实现这个interface,然后我们拿到了这个插件之后,去调用这个插件的功能,我们可以不知道这些插件的类名等信息,我们接下来就用反射机制去实现这个功能...
分类:
Web程序 时间:
2014-07-24 10:35:04
阅读次数:
282
//长方形的类的声明与实现#import @interface Rect2 : NSObject{// float chang;// float w;}@property float chang;@property float w;- (float)sizeOfRect;@end#imp...
分类:
其他好文 时间:
2014-07-24 10:04:16
阅读次数:
221
在PL/SQL Developer中编写sql语句时,如果无法自动提示字段那是一件痛苦的事情,工作效率又低,在此演示下如何在PL/SQL Developer工具中自动提示字段,让开发者省时又省心,操作步骤如下:tools–>preferences–>user interface–>code assi...
分类:
数据库 时间:
2014-07-23 22:14:17
阅读次数:
352
I. C#中值类型和引用类型1. 类class 引用类型,结构struct值类型2. 数组是引用类型,即使元素是值类型,int[]是引用类型3. 枚举是值类型enum4. 委托类型delegate是引用类型5. 接口类型interface是引用类型,但可以由值类型实现。II. 值的表达式:表达式“2...
分类:
其他好文 时间:
2014-07-23 22:12:37
阅读次数:
265
`UIView的Category UISnapshotting ````objc@interface UIView (UISnapshotting)- (UIView *)snapshotViewAfterScreenUpdates:(BOOL)afterUpdates;- (UIView *)re...
分类:
移动开发 时间:
2014-07-23 22:09:57
阅读次数:
303
BeyondViewController.h
//
// BeyondViewController.h
// 04_表情排列
//
// Created by beyond on 14-7-22.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import
@interface BeyondViewContr...
分类:
移动开发 时间:
2014-07-23 18:11:26
阅读次数:
318