码迷,mamicode.com
首页 >  
搜索关键字:property manager    ( 15569个结果
property属性
@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(动态属性)
本文介绍一种设计模式 Dynamic Property(动态属性)模式。
分类:其他好文   时间:2014-05-09 05:28:37    阅读次数:334
ibatis错误汇总
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
将数据库select出来的数据转化为与相应databean对应的字典
如下图: 从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
The Network Adapter could not establish the connection解决办法
用 oracle net manager 将监听改为IP地址,将服务命名也改为IP地址,然后数据库连接改为IP地址方式不要用localhost
分类:Web程序   时间:2014-05-08 18:35:45    阅读次数:255
黑马程序员 内存管理之proterty,autorelease
#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
黑马程序员 成员变量的作用域,property,id,构造方法,点语法
#import @interface Person : NSObject{ /* 成员变量作用域有四种: 1.@public:能在程序中任何地方直接访问成员变量 2.@protect:能在当前类和子类中直接访问成员变量(默认情况下) 3.@provate:只能在当前类中直接访问成员变量(@prope...
分类:其他好文   时间:2014-05-08 09:14:29    阅读次数:500
Tomcat8访问管理页面localhost出现:403 Access Denied
问题: 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
Linux下搭建Java开发环境
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
ora-12170:tns:连接超时
在虚拟机里面安装了一个oracle每次换一个网络,plsql连接就不好使了,整了好几次才搞定记录下来:1.开始----程序-----oracle------配置和移植工具-----Net Manager----本地----服务命名---ora11(这个是我的专用服务器) 把右边下面的主机名改成192...
分类:其他好文   时间:2014-05-08 01:24:42    阅读次数:311
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!