Objective-C类、对象、方法1.编写一个复数类:#import @interface Complex: NSObject //类声明,Complex继承NSObject{ int iReal;//成员变量声明,在括号内 int iImag;}//成员函数声明,在括号外-(...
分类:
其他好文 时间:
2014-07-19 19:07:42
阅读次数:
213
类1.合成存取器方法@property 成员变量@synthesize 成员变量可以让编译器自动合成 设置和获取函数的方法,不用手动生成set成员变量,Get成员变量@interface Complex : NSObject{ int iReal,iImag;}@property int iReal...
分类:
其他好文 时间:
2014-07-19 15:08:15
阅读次数:
224
#import #import @interface MjMusicViewController : UIViewController{ NSInteger controlPlayStyle; NSInteger controlPlay; NSMutableArray *timeA...
分类:
其他好文 时间:
2014-07-19 11:14:19
阅读次数:
303
1.依赖倒置原则 A.高层次的模块不应该依赖于低层次的模块,他们都应该依赖于抽象。 B.抽象不应该依赖于具体,具体应该依赖于抽象。2.用UML图来说明一下:代码说明:(1)管理员接口1 package com.alibaba.com.miao;2 3 public interface IEmpl.....
分类:
编程语言 时间:
2014-07-19 09:24:41
阅读次数:
294
import java.text.DecimalFormat; //抽象组件组件interface mkcake{ public void cake();}class Cake implements mkcake{ @Override public void cake() { ...
分类:
编程语言 时间:
2014-07-19 09:16:56
阅读次数:
229
目录(?)[-]目标编译源码编译链接是否使用SSLautoconf宏跨平台的可移植的代码全局初始化CURL_GLOBAL_WIN32CURL_GLOBAL_SSLlibcurl提供的功能使用easy interface多线程问题什么时候libcurl无法正常工作上传数据到远程站点关于密码HTTP验证...
分类:
其他好文 时间:
2014-07-19 00:26:57
阅读次数:
467
【boxing & unboxing】 Boxing is the process of converting avalue typeto the typeobjector to any interface type implemented by this value type.When the ....
分类:
其他好文 时间:
2014-07-18 17:24:23
阅读次数:
240
用过plsql的都知道,双击表名默认是【展开/关闭】。
习惯了MySql Workbench或者Sqlserver Management Studio等管理工具的可能不太适应。
直接上解决办法:
Tools -> Preferences -> User
Interface -> Browser -> Object
type(Table) -> Double-click
Actio...
分类:
数据库 时间:
2014-07-18 15:10:55
阅读次数:
271
实验环境:安装:yuminstallcorosyncpacemaker-y复制配置文件cpcorosync.conf.examplecorosync.confvimcorosync.conf编辑配置文件:compatibility:whitetank是否兼容0.8版本的corosynctotem{定义集群之间心跳信息传递层version:2----版本号secauth:on---是否启用安全认证thread..
分类:
其他好文 时间:
2014-07-18 13:18:51
阅读次数:
353
JNDI 全称:Java Name and Directory Interface
,中文名:Java命名和目录服务接口
用途:
将【名称】和【位置|服务|信息|资源】绑定,从而通过【名称】即可访问【位置|服务|信息|资源】,进而在分布式计算环境中获取共享的【组件和资源】
功能:
1.将【名称】和【位置|服务|信息|资源】绑定
2.通过【名称】对【位置|服务|信息|资源】进...
分类:
其他好文 时间:
2014-07-18 12:33:44
阅读次数:
221