@interface Person : NSObject@property (nonatomic,
copy) NSString *name;@end @interface Student :
Person@end1.Student类无法使用_name来访问Person中属性name,因为当使用@p...
分类:
其他好文 时间:
2014-05-09 08:20:33
阅读次数:
268
本文介绍一种设计模式 Dynamic Property(动态属性)模式。
分类:
其他好文 时间:
2014-05-09 05:28:37
阅读次数:
334
1) 错误:The prefix "context" for element "context:property-placeholder" is not bound.
解决:在文件头中引入:xmlns:context="http://www.springframework.org/schema/context" 即可。
正解例子:
xmlns:xsi="http://www...
分类:
其他好文 时间:
2014-05-09 02:16:02
阅读次数:
406
如下图:
从user_logs表格select出来的数据放在一个可变数组NSMutableArray中,如 user_logs,现在要
把数据一条条转化为Userlog databean,UserLog定义如下:
@interface UserLog : NSObject
@property(strong,nonatomic) NSString * logId;
@property(...
分类:
数据库 时间:
2014-05-09 01:02:22
阅读次数:
373
用 oracle net manager
将监听改为IP地址,将服务命名也改为IP地址,然后数据库连接改为IP地址方式不要用localhost
分类:
Web程序 时间:
2014-05-08 18:35:45
阅读次数:
255
#import @interface Person : NSObject{ Book *
_book; int _age;}/* oc对象 1.@property能制动生成setter和getter方法
2.retain告诉编译器自动生成setter里的retain 3.atomic:低性能(默认情...
分类:
其他好文 时间:
2014-05-08 18:33:51
阅读次数:
303
#import @interface Person : NSObject{ /*
成员变量作用域有四种: 1.@public:能在程序中任何地方直接访问成员变量 2.@protect:能在当前类和子类中直接访问成员变量(默认情况下)
3.@provate:只能在当前类中直接访问成员变量(@prope...
分类:
其他好文 时间:
2014-05-08 09:14:29
阅读次数:
500
问题: 403 Access DeniedYou are not authorized to view
this page.If you have already configured the Manager application to allow access
and you have used...
分类:
数据库 时间:
2014-05-08 09:12:05
阅读次数:
570
Red Hat Package Manager 简称rpm
rpm格式的文件就是我们可以使用RPM命令进行管理的软件包格式的文件
JDK的安装
#sh /root/Desktop/jdk-6u23-linux-i586-rpm.bin
.bin 可以使用sh命令来解压执行
Linux的用户的登录过程
/etc/profile
/etc/profile.d(各个脚本)
/et...
分类:
编程语言 时间:
2014-05-08 02:08:50
阅读次数:
329
在虚拟机里面安装了一个oracle每次换一个网络,plsql连接就不好使了,整了好几次才搞定记录下来:1.开始----程序-----oracle------配置和移植工具-----Net
Manager----本地----服务命名---ora11(这个是我的专用服务器) 把右边下面的主机名改成192...
分类:
其他好文 时间:
2014-05-08 01:24:42
阅读次数:
311