码迷,mamicode.com
首页 >  
搜索关键字:end    ( 30778个结果
将一个链表中倒数第n个节点删除
Given a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After re...
分类:其他好文   时间:2015-12-09 11:56:40    阅读次数:168
ACM 1000
Problem DescriptionCalculateA + B.InputEach line will contain two integersAandB. Process to end of file.OutputFor each case, outputA + Bin one line.Sa...
分类:其他好文   时间:2015-12-08 23:53:59    阅读次数:197
thinkphp之性能调试
开发工程中,有时为了测试性能,经常需要调试某段代码的运行时间或者占用开销,系统提供了G方法可以很方便的获取某全歼的运行时间后者占用开销G('begin');//代码。。。G('end'); //可能还有代码 echo G('begin','end').'s';上面的代码就会输出类似于:0.0056s...
分类:Web程序   时间:2015-12-08 11:34:36    阅读次数:213
涂鸦画板
#import "ViewController.h"#import "DrawView.h"@interface ViewController ()@end@implementation ViewController-(void)loadView{ self.view = [[DrawView a....
分类:其他好文   时间:2015-12-08 08:39:55    阅读次数:128
上拉刷新,下拉加载
#import "AppDelegate.h"#import "MyTableViewController.h"@interfaceAppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)ap...
分类:其他好文   时间:2015-12-08 00:24:27    阅读次数:263
office 2013操作
打开文件Ctrl+O键英文大小写切换Shift + F3键返回上一步的操作Ctrl + Z键插入日期插入》文本》日期和时间插入公式(公式编辑器)插入》文本》对象》新建》Microsoft 公式 3.0》确定移至文档起始位置Ctrl + Home移至文档结束位置Ctrl + End使用快捷键启动off...
分类:其他好文   时间:2015-12-08 00:19:30    阅读次数:142
protocol
一、简单使用1、基本用途可以用来声明一大堆方法(不能声明成员变量)只要某个类遵守了这个协议,就相当于拥有这个协议中的所有方法声明只要父类遵守了某个协议,就相当于子类也遵守了2、格式协议的编写 @protocol 协议名称 // 方法声明列表 @end某个类遵守协议 @interface 类名...
分类:其他好文   时间:2015-12-08 00:14:32    阅读次数:103
分类-Category
1、基本用途如何在不改变原来类模型的前提下,给类扩充一些方法?有2种方式 继承 分类(Category)2、格式分类的声明 @interface 类名 (分类名称) // 方法声明 @end分类的实现 @implementation 类名 (分类名称) // 方法实现 @end3、好...
分类:其他好文   时间:2015-12-08 00:06:07    阅读次数:106
MFC DLL获取当前路径
1.首先定义此获取模块的静态方法#if _MSC_VER >= 1300 // for VC 7.0 // from ATL 7.0 sources #ifndef _delayimp_h extern "C" IMAGE_DOS_HEADER __ImageBase; #endif #end...
分类:编程语言   时间:2015-12-07 22:24:21    阅读次数:265
Sql语句查看表结构
(1)SELECT表名=case when a.colorder=1 then d.name else '' end,表说明=case when a.colorder=1 then isnull(f.value,'') else '' end,字段序号=a.colorder,字段名=a.name,标...
分类:数据库   时间:2015-12-07 22:19:07    阅读次数:220
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!