The server file is created when you install TortoiseSVN, Eclipse or command-line Subversion. Use the appropriate path from the installation folder to ...
分类:
其他好文 时间:
2014-07-23 15:15:56
阅读次数:
292
BeyondViewController.h
//
// BeyondViewController.h
// 01_calc
//
// Created by beyond on 14-7-20.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import
@interface BeyondViewCon...
分类:
移动开发 时间:
2014-07-22 23:50:27
阅读次数:
349
BeyondViewController.h
//
// BeyondViewController.h
// 02_按钮控制物体形变
//
// Created by beyond on 14-7-21.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import
@interface BeyondViewC...
分类:
移动开发 时间:
2014-07-22 23:49:47
阅读次数:
330
BeyondViewController.h
//
// BeyondViewController.h
// 03_图片浏览
//
// Created by beyond on 14-7-22.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import
@interface BeyondViewContr...
分类:
移动开发 时间:
2014-07-22 23:49:37
阅读次数:
345
/** * Created by rabbit on 2014-07-21. 博客园.liupengcheng * 当多个类中 出现相同功能。但是功能主体不同。这时可以进行向上 * 抽取,这时,只抽取功能定义,而不抽取功能主体。 * * 抽象 看不懂 * * 抽象类的特点 * 1、抽象方...
分类:
其他好文 时间:
2014-07-22 00:32:37
阅读次数:
260
/** * Created by rabbit on 2014-07-21.博客园.刘朋程 */ //Created by rabbit on 2014-07-21.博客园.刘朋程 abstract class GetTime { public void getTime() ...
分类:
其他好文 时间:
2014-07-22 00:25:33
阅读次数:
261
第一部分:认识jar中的MANIFEST.MF文件一、MANIFEST.MF文件的基本配置信息:1.一般属性: Manifest-Version:定义manifest文件的版本 Created-By:定义该文件的生成者,一般是由jar命令行工具生成 Signature-Version:定义jar文件...
分类:
其他好文 时间:
2014-07-22 00:04:33
阅读次数:
258
方便统计各种平台项目的代码量,主要用到了find指令来进行处理的详情点击打开链接。
源代码如下:
# -*- coding: utf-8 -*-
'''
Created on Jul 18, 2014
@author: Jayhomzhou
@note: 计算注释以及代码的总行数(即代码量)
'''
import subprocess
def countCodes(codePa...
分类:
编程语言 时间:
2014-07-21 16:38:02
阅读次数:
352
二叉搜索树(binary search tree) 代码(C)本文地址: http://blog.csdn.net/caroline_wendy二叉搜索树(binary search tree)可以高效的进行插入, 查询, 删除某个元素, 时间复杂度O(logn).简单的实现方法如下.代码:/*
* main.cpp
*
* Created on: 2014.7.20
* Au...
分类:
其他好文 时间:
2014-07-21 15:15:16
阅读次数:
273
堆(heap) 代码(C)本文地址: http://blog.csdn.net/caroline_wendy堆(heap)作为二叉树的重要应用, 时间复杂度O(logn), 需要熟练的写出其代码, 基本代码如下, 需要背写.代码:/*
* main.cpp
*
* Created on: 2014.7.20
* Author: spike
*/
/*eclipse cdt,...
分类:
其他好文 时间:
2014-07-21 11:47:44
阅读次数:
223