当用于不同的上下文环境时,static关键字具有不同的意思。
当它用于函数定义时,或用于代码块之外的变量声明时,static关键字用于修改标识符的链接属性,从external改为internal,但标识符的存储类型和作用域不受影响。用这种方式声明的函数或变量只能在声明它们的源文件中访问。
当...
分类:
其他好文 时间:
2014-07-22 23:12:12
阅读次数:
266
//要实现UIWebViewDelegate代理@interface
TestViewController : UIViewController{ UIWebView *protWebView;}@property
(retain, nonatomic) IBOutletUIWebView *pr....
分类:
移动开发 时间:
2014-05-01 15:13:29
阅读次数:
420
detect 发现 察觉workstation 工作站/计算机proceed vi 进行
继续abort n 中止计划 vi/vt 流产 发育不全 使…流产security 安全guideline 指导enhancement 增强interface
接口definition 清晰度multmedia...
分类:
其他好文 时间:
2014-05-01 10:47:53
阅读次数:
338
1、定义一个基类接口public interface IBaseEntity{/// 最后操作人编码
string LastOperatorCode { get; set; }/// 最后操作人 string LastOperator { get; set;
}/// 最后操作时间 DateT...
分类:
其他好文 时间:
2014-05-01 08:14:17
阅读次数:
267
抽象类(abstract class) 描述抽象的事物, 比如人类(human), 就是一个抽象类.
对于人类这个抽象类, 具体的就是某一个人, 比如张三(男)啊, 小红(女)啊,虽然说人都会eat,
可是男人和女人的eat似乎又是不一样的.男人一般都是大口大口的吃, 而女人比较慢条斯理. ...
分类:
编程语言 时间:
2014-05-01 00:10:59
阅读次数:
439
在上一篇文章当中,我们介绍了Ejb的相关概念。再展开后文介绍之前,我先给大家提供一个Ejb实例,加深印象。
开发环境:eclipse
应用服务器:jboss
1、服务端程序
在Eclipse中创建一个Ejb项目:EjbTest
添加接口IHelloWorld
package com.ejb;
public interface IHelloWorld {
public S...
分类:
其他好文 时间:
2014-04-29 13:31:20
阅读次数:
266
在Java多线程程序中,由于线程调度,指令间的次序在每次运行时都可能不相同,有时候,我们需要得到指令次序,用来分析程序的行为。这样细粒度的底层行为用一般方法很难完成,我们需要借助 JVM Tool Interface,即JVMTI,来帮助我们获取Java虚拟机执行时的信息。本文先介绍编写JVMTI程序的基本框架,然后介绍如何使用JVMTI来获取多线程程序中指令之间的次序。...
分类:
编程语言 时间:
2014-04-29 13:11:22
阅读次数:
892
为了避免目标端nrpe进程监控多个接口而造成的安全漏洞。有必要固定服务端的地址,对nrpe.cfg配置中,有下列一行介绍
#SERVER ADDRESS
# Address that nrpe should bind to in case there are more than one interface
# and you do not want nrpe to bind on all in...
分类:
其他好文 时间:
2014-04-27 22:36:17
阅读次数:
454
Defining annotations
Here is the definition of the annotation above. You can see that annotation definitions look a lot like interface definitions.
In fact, they compile to class files like any oth...
分类:
编程语言 时间:
2014-04-27 21:47:05
阅读次数:
348
头文件:
#import
#import
@interface DirectionRouteUtils : NSObject
{
MKDirections *mDirections;
CLGeocoder *mGeocoder;
}
+ (instancetype)sharedInstance;
// 获取导航路线
- (void)findDirectionsFro...
分类:
移动开发 时间:
2014-04-27 21:35:59
阅读次数:
558