- (void)viewDidLoad{ [super viewDidLoad]; [[UIApplication sharedApplication] setApplicationSupportsShakeToEdit:YES]; [self becomeFirstResponder];}-...
分类:
其他好文 时间:
2015-04-11 01:10:21
阅读次数:
123
Eclipse使用技巧;Eclipse使用快捷键;
分类:
系统相关 时间:
2015-04-11 01:09:42
阅读次数:
178
1.bool变量及运算print 1 + 1 == 2print 1 + 1 != 2print 1 + 1 == 2 and 1 + 1 == 3print 1 + 1 == 2 or 1 + 1 == 3print not 1 + 1 == 2print 1 in [1, 2, 3]输出:Tru...
分类:
编程语言 时间:
2015-04-11 01:11:44
阅读次数:
211
fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can't map input file: xxxFramework.framework...
分类:
移动开发 时间:
2015-04-11 01:11:00
阅读次数:
3068
上一篇我们简单的将了在Ubuntu上编译chromium,androidcontent_shell_apk的编译,一切顺利的就能生成apk。但是我们仅仅只是照搬了人家google开源的东西,作为一个开发者我们应带着探索的精神,都说它稳定,速度快。它为什么这么快、稳定? 带着这一系列的问题,我们去学习...
分类:
其他好文 时间:
2015-04-11 01:08:43
阅读次数:
119
How can I work smarter, not just harder?记住,永远要问自己这个问题。当你发现在做一件事情时,总是那么的繁琐无味,那么一定是出了什么问题。如果一味地强调更加勤奋,本身可能会犯方向性的错误。因为更加勤奋不做思考,那么你永远无法进步,永远也一直会那么地忙下去。只有经...
分类:
其他好文 时间:
2015-04-11 01:08:33
阅读次数:
115
题目地址:https://leetcode.com/problems/minimum-window-substring/题目解答:import java.util.HashMap;import java.util.Map;public class Solution { public Strin...
上一篇我们简单的将了在Ubuntu上编译chromium,android?content_shell_apk的编译,一切顺利的就能生成apk。但是我们仅仅只是照搬了人家google开源的东西,作为一个开发者我们应带着探索的精神,都说它稳定,速度...
分类:
其他好文 时间:
2015-04-11 00:08:27
阅读次数:
196
项目地址: https://git.oschina.net/jthmath/xplayer 编译出来的程序下载地址: http://pan.baidu.com/s/1eQxoHgA 程序在Windows 8.1 64-bit下测试通过。目前暂不支持32-bit。 一、运行方法 运行xplayer.exe,选...
分类:
编程语言 时间:
2015-04-11 00:09:16
阅读次数:
138
4975 - Casting Spells
Time limit: 3.000 seconds
Casting spells is the least understood technique of dealing with real life. Actually, people find it quite hard to distinguish between a real spe...
分类:
其他好文 时间:
2015-04-11 00:07:35
阅读次数:
187
题目:
Given a binary tree
struct TreeLinkNode {
TreeLinkNode *left;
TreeLinkNode *right;
TreeLinkNode *next;
}
Populate each next pointer to point to its next right n...
分类:
其他好文 时间:
2015-04-11 00:07:02
阅读次数:
170
面试中被问到:Android中activity保存状态数据到底该在哪个方法中进行,面试官也不一定靠谱...
分类:
移动开发 时间:
2015-04-11 00:07:02
阅读次数:
192
使用wait/notify/notifyAll实现线程间通信的几点重要说明...
分类:
编程语言 时间:
2015-04-11 00:08:02
阅读次数:
191
一、概述
MyBatis是一个持久化框架和Hiberante差不多。比起JDBC来说MyBatis封装了JDBC让我们能够面向对象开发。比起Hiberante来说卸下了Hiberante那种重量级的东西而是一个轻量级的框架,之所以很多互联网公司愿意用这个比如JD.COM在某方面来来说MyBatis比较轻量,效率高,灵活性高,面临复杂的业务查询来说Hibernate的查询效率比起M...
分类:
其他好文 时间:
2015-04-11 00:05:55
阅读次数:
169
C++里面vector好像越来越成为取代数组的利器,具体区别详参C++ primer plus.今天写程序用到了这个东西,试水之后发现很多问题,特别是因为capacity和size的问题困扰了一天,虽然问题很stupid,还是把关于vector的介绍整理如下,希望用到改工具的人少走弯路:
一:什么是容器[1](文章援引已注明,请尊重原创作者):
vector是C++标准模板库中的部分内...
分类:
其他好文 时间:
2015-04-11 00:04:30
阅读次数:
213
import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
public class PrefUtil {
private static Context context;
private ...
分类:
其他好文 时间:
2015-04-11 00:04:30
阅读次数:
165
//ak =[k(1+√5)/2],bk= ak + k (k=0,1,2,...n 方括号表示取整函数)
//即(bk-ak)==ak*(√5-1)/2 或 (bk-ak)+ 1==ak*(√5-1)/2即输
#include
#include
#include
#include
using namespace std ;
int main()
{
int n , m;...
分类:
其他好文 时间:
2015-04-11 00:06:48
阅读次数:
133