//使用实例方法创建NSSting的对象 NSString*string1 =
[[NSStringalloc]initWithFormat:@"姓名:%@",@"hfjs"]; NSString*string2 =
[[NSStringalloc] initWithFormat:@"姓名"...
分类:
其他好文 时间:
2014-04-30 00:51:16
阅读次数:
553
广州疯狂软件教育Java培训,iOS培训分享
泛型:1.5版本以后出现的新特性。用于解决安全问题,是一个安全机制。 好处: 1、将运行时期出现问题ClassCaseException,转移到了编译时期。
2、方便与程序员解决问题。让运行时事情减少,安全。 3、避免了强制类型转换 泛型...
分类:
编程语言 时间:
2014-04-30 00:41:04
阅读次数:
541
public class Factory2 { /** * @param args 工厂模式
*/ public static void main(String[] args) { // TODO Auto-generated method stub
Ifactory ifactory =...
分类:
其他好文 时间:
2014-04-30 00:33:52
阅读次数:
504
public class Factory2 { /** * @param args 工厂模式
*/ public static void main(String[] args) { // TODO Auto-generated method stub
//工厂模式 Ifactory if...
分类:
其他好文 时间:
2014-04-30 00:13:13
阅读次数:
512
protected void onCreate(Bundle
savedInstanceState);protected void onStart();protected void
onRestart();protected void onResume();protected void onPaus...
分类:
其他好文 时间:
2014-04-29 23:53:49
阅读次数:
688
ECMAScript给Function原型定义了两个方法,一个是call()和apply()。使用这两个方法可以想其他对象方法一样调用函数。把对象当成数据一样的参数传递给函数,参数去调用函数。
他两的区别是:call的第一个参数必须是对象(或者函数),其余的参数可以任意。而apply的一般只有两个参...
分类:
移动开发 时间:
2014-04-29 23:48:41
阅读次数:
872
1.关于SQL查询效率,100w数据,查询只要1秒,与您分享:机器情况p4: 2.4内存: 1
Gos: windows 2003数据库: ms sql server 2000目的: 查询性能测试,比较两种查询的性能SQL查询效率 step by
step-- setp 1.-- 建表create ...
分类:
数据库 时间:
2014-04-29 23:33:20
阅读次数:
814
1.MVC 和 JSP Model 2 ** a.:M-Model 模型
包含两部分:业务数据和业务处理逻辑 b.V-View 视图:视图(View)的职责是负责显示界面和用户交互(收集用户信息)。 c.C-Controller
控制器 项目中写的ActionServlet。-----------....
分类:
其他好文 时间:
2014-04-29 23:25:04
阅读次数:
648
希望这个从UITableViewDelegate协议里得到的方法可以对你有所帮助:- (UIView
*) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{ UIView *headerVi....
分类:
移动开发 时间:
2014-04-29 23:10:47
阅读次数:
809
1 string dict = @"d:\估价报告\"; 2 if
(!Directory.Exists(dict)) 3 { 4 Directory.CreateDirectory(dict); //创建文件夹 5 } 6
string subFolder = "su...
分类:
其他好文 时间:
2014-04-29 23:09:44
阅读次数:
444