iOS中常用的快捷键
command+[:左缩进
command+]:右缩进
control-F: 向右一个字符(forward)
control-B: 向左一个字符(backward)
control-P: 前一行(previous)
control-N: 后一行(next)
control-A: 去行首
control-E: 到行尾(end)
control-T: ...
分类:
移动开发 时间:
2015-06-05 19:48:00
阅读次数:
165
在编译之前进行的处理。预处理命令以符号“#”开头。#define 只能定义符号 不能定义宏(#define PI 3.14 这是错的,在c#中没宏)#region #endregion#if #end if#define MyDebug#undef MyDebug#define MyTrace#if...
Remove Nth Node From End of List
题目:
Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: 1->2->3->4->5, and n = 2.
After r...
分类:
其他好文 时间:
2015-06-05 14:07:20
阅读次数:
172
Get-MessageTrackingLog -Start "06/05/2015 01:00:00" -End "06/05/2015 01:00:00" -Recipients "xxxx1@eccom.com.cn" -Sender "xxxx2@eccom.com.cn" |ft ...
分类:
其他好文 时间:
2015-06-05 13:56:50
阅读次数:
111
怎样一键导出excel
public function input() {
ob_end_clean(); //清除缓冲区,避免乱码
header("Content-Typ:text/html;charset=utf-8");
vendor('Excel.PHPExcel.Writer.IWriter');
vendor('Exce...
分类:
其他好文 时间:
2015-06-05 12:23:28
阅读次数:
166
分析:水题。
#include
using namespace std;
#define N 5050
char a[N],b[N],tmp[N];
void Read(char p[])
{
getchar();
gets(tmp);
while(gets(tmp))
{
if(strcmp(tmp,"END")==0) break;
if(strlen(tmp)!=0) ...
分类:
其他好文 时间:
2015-06-05 12:19:38
阅读次数:
132
#import "AppDelegate.h"#import "GexinSdk.h"#import "ViewController.h"@interface AppDelegate (){ GexinSdk *_gexinSdk;}@end@implementation AppDelegate/....
分类:
移动开发 时间:
2015-06-05 09:59:16
阅读次数:
177
--使用pl/sql语句打印一个hello world begin dbms_output.put_line('hello,world'); end; 但是在sqlplus里面就不一样了 首先输入 begin dbms_output.put_line('hello,world'); end; / 通...
分类:
数据库 时间:
2015-06-05 09:57:51
阅读次数:
137
保存Ctrl+S刷新F5关闭Ctrl+W属性Alt+EnterFormatCtrl+Shift+F删除行Ctrl+D在当前行上面插入行Ctrl+Shift+Enter在当前行下面插入行Shift+Enter更改为大写Ctrl+Shift+X更改为小写Ctrl+Shift+Y选择行末Shift+End...
分类:
系统相关 时间:
2015-06-05 09:56:37
阅读次数:
132
$ 直线与直线间关系$$ l_1: \begin{cases} A_1x + B_1y + C_1z + D_1 = 0 \\ A_2x + B_2y + C_2z + D_2 = 0 \end{cases} \qquad l_2: \begin{cases} A_3x + B_3y + C_3z ...
分类:
其他好文 时间:
2015-06-05 00:37:21
阅读次数:
152