USE [NLISSST]GO/****** Object: StoredProcedure
[SST].[sp_ArbitrationUpdateByID] Script Date: 05/08/2014 10:29:59 ******/SET
ANSI_NULLS ONGOSET QUO...
分类:
其他好文 时间:
2014-05-08 18:50:01
阅读次数:
275
USE [NLISSST]GO/****** Object: StoredProcedure
[SST].[sp_ArbitrationDeleteByID] Script Date: 05/08/2014 10:26:49 ******/SET
ANSI_NULLS ONGOSET QUO...
分类:
其他好文 时间:
2014-05-08 18:46:50
阅读次数:
226
#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
// GuideViewController.h// Created by l.h on
14-5-6.#import @interface GuideViewController : UIViewController@end ////
GuideViewController.m// Cr...
分类:
移动开发 时间:
2014-05-08 18:17:49
阅读次数:
640
1.O(nlogk)海量数据 1 import java.util.TreeSet; 2 3
public class T030 { 4 public static void main(String[] args){ 5 int[] data =
{4,5,1,6,2,7,...
分类:
编程语言 时间:
2014-05-08 18:07:12
阅读次数:
422
package com.test; import java.util.Date; /** *
@author libt * @version 创建时间:2014-5-08上午11:39:37 *
开了三个线程。一个timeThread,一个thread2,一个main thread。...
分类:
编程语言 时间:
2014-05-08 17:54:05
阅读次数:
368
#import // 利用typedef创建blocktypedef int
(^MyBlock) (int,int); // 表示遵守协议@protocol MyProtocol /*
1.reqiured:要求实现方法,不实现方法编译器会发出警告 2.optional:不要求实现方法 3.默.....
分类:
其他好文 时间:
2014-05-08 17:40:55
阅读次数:
225
1 如何fake gps ?
gps的fake 有个很奇怪的现象 你需要把fake gps的代码放到一个service当中 不知道是否是系统对发出fake信息的源进行了限定 目前实验结果是需要放在service
代码大致如下
package com.yiqiding.ktvbox.view.service;
import java.lang.reflect.Method;
impor...
分类:
移动开发 时间:
2014-05-08 10:50:35
阅读次数:
567
/* 内存管理原则: 1.谁alloc,new或copy,谁就进行一次release
2.谁retain,谁release */#import @interface Person : NSObject { Car * _car; int
_age;}- (void)setCar:(Car *)car...
分类:
其他好文 时间:
2014-05-08 10:18:57
阅读次数:
284
这小例子只要是说明用python怎么批量修改指定目录的文件名:
记得要把脚本跟修改的文件放在同一个目录下
#encoding:utf-8
import os
import sys
files = os.listdir('D:\\1') #路径可以自己
for name in files:
a = os.path.splitext(name)
if a[1] == '.txt': ...
分类:
编程语言 时间:
2014-05-08 08:16:14
阅读次数:
537