iOS开发UI篇—手势识别器(长按+轻扫)一、长按事件 1 // 2 // YYViewController.m 3 // 03-长按 4 // 5 // Created by apple on 14-6-19. 6 // Copyright (c) 2014年 itcase. All ri...
分类:
移动开发 时间:
2014-06-28 16:21:31
阅读次数:
361
IOS开发UI篇—手势识别器(拖拽+旋转+缩放)一、拖拽示例代码: 1 // 2 // YYViewController.m 3 // 06-拖拽事件 4 // 5 // Created by apple on 14-6-19. 6 // Copyright (c) 2014年 itcase...
分类:
移动开发 时间:
2014-06-28 15:36:33
阅读次数:
392
BACKGROUND OF THE INVENTIONA virtual machine (VM) may be or include a framework or environment created by for example a virtual machine monitor (VMM) ...
分类:
移动开发 时间:
2014-06-28 14:30:32
阅读次数:
232
/* * Created by SharpDevelop. * User: Administrator * Date: 2013/11/18 * Time: 20:55 * * To change this template use Tools | Options | Coding | Edit ....
分类:
其他好文 时间:
2014-06-28 12:34:14
阅读次数:
466
In a previous tutorial we showed how to install Openvswitch on Qemu image with Microcore Linux. At the end of tutorial we created Openvswitch extensio...
分类:
其他好文 时间:
2014-06-24 10:15:40
阅读次数:
610
表中的数据被delete之后并不会真正删除数据,而是打了一个删除标记,只要还没有被覆盖就可以恢复回来。
实验过程如下:
SYS@ORCL>create table bbed_test(x varchar2(20));
Table created.
SYS@ORCL>insert into bbed_test values('BADLY9');
1 row created...
分类:
数据库 时间:
2014-06-22 22:06:59
阅读次数:
330
深度优先算法
问题
给定一个有向图,判断其顶点能否到达另外一个顶点。
解决办法
使用深度优先算法,和无向图中的是一样的。
代码
import java.util.Stack;
/**
* Created by caipeichao on 14-6-11.
*/
public class Digrap...
分类:
其他好文 时间:
2014-06-22 21:32:28
阅读次数:
250
读取完整的文件(C++)本文地址: http://blog.csdn.net/caroline_wendyC++: 把文本文件(txt)的所有内容读入字符串(string), 最高效的方法.代码:/*
* main.cpp
*
* Created on: 2014年6月17日
* Author: Spike
*/
/*eclipse cdt, gcc 4.8.1*/
#i...
分类:
编程语言 时间:
2014-06-22 19:08:52
阅读次数:
209
使用bbed不仅仅可以找回已经delete的数据还可以恢复update的数据,当然过程要比恢复delete的数据复杂一些。
实验过程如下:
SYS@ORCL>create table bbed_test(x int,y varchar2(20));
Table created.
SYS@ORCL>insert into bbed_test values(1,'BADLY9');...
分类:
数据库 时间:
2014-06-22 18:25:30
阅读次数:
409
功能:
实现多线程:2个线程同时工作,一个用时间计数器,一个用来打印信息
STEP1
XCODE -》New Application -》Cocoa中的Command Line
自动增加:
#include
STEP2
//
// main.c
// test_runloop1
//
// Created by DMD on 20/6/14.
// Copyri...
分类:
编程语言 时间:
2014-06-22 17:39:26
阅读次数:
283