简洁、直观、强悍的前端开发框架,让web开发更迅速、简单。Ref:http://www.bootcss.com/Ref:http://getbootstrap.com/Ref:http://bootply.com/new
分类:
其他好文 时间:
2015-04-27 19:44:18
阅读次数:
84
Ref:iOS8 Day-by-DayRef:iOS8-day-by-day sourceRef:Let's SwiftRef:Swift 代码库Ref:iOSApprenticeThirdEditionRef:The Swift Programming Language 中文版Ref:15个快速学...
分类:
移动开发 时间:
2015-04-27 19:44:10
阅读次数:
123
Ref:JSON字符串转换成Java实体类(POJO)Ref:Java、Json转换方式之二:JacksonRef:Jackson 框架,轻易转换JSONRef:几种序列化协议(protobuf,xstream,jackjson,jdk,hessian)相关数据对比Ref:Google Protoc...
分类:
移动开发 时间:
2015-04-27 19:40:45
阅读次数:
140
这个链接非常详尽地列举了IOS7里面所有的系统声音,声音的ID,声音的存放位置
尽管现在已经是ios8的时代,但是系统声音这个东东不会因此过时,毕竟声音就那几十种,不会一下子有太大变化。
https://github.com/TUNER88/iOSSystemSoundsLibrary
这个stackoverflow里面有一些比较有用的信息和链接,包括怎样播放系统声音,怎样查看ref...
分类:
移动开发 时间:
2015-04-27 09:55:15
阅读次数:
133
一句话:container就用mem_fun,container就用mem_fun_ref参考:http://www.cplusplus.com/reference/functional/mem_fun/http://www.cplusplus.com/reference/functional/me...
分类:
其他好文 时间:
2015-04-27 09:24:11
阅读次数:
151
cocos2dx3.0之跑酷使用磁铁道具吸收金币cocos2dx30之跑酷使用磁铁道具吸收金币
原理
实现方法与关键代码
效果图转载请注明[http://write.blog.csdn.net/postedit?ref=toolbar]
在跑酷游戏中,我们常常需要有这么一个场景,runner 在跑酷的过程中可以吃金币,当他吃到一个磁铁道具的时候,此时屏幕范围内的所有金币都会朝着runner 飞过来...
分类:
其他好文 时间:
2015-04-25 12:14:16
阅读次数:
174
Undefined symbols for architecture i386:
“_OBJC_CLASS_$_XXX”, referenced from:
objc-class-ref in XXX
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1...
分类:
其他好文 时间:
2015-04-24 19:16:05
阅读次数:
255
#pragma once
#include
#include
using namespace std;
template
class SmartPointer
{
//不允许有SmartPointer sp=new T()这样的使用方式能给sp赋值的只有另一个sp对象和构造方法
public:
SmartPointer(T* p = 0) :ptr(p), ref_count(new siz...
分类:
其他好文 时间:
2015-04-24 14:23:10
阅读次数:
104
测试代码:#include #include template void ref (T const& x){ std::cout void nonref(T x){ std::cout << "x in nonref(T): " << typeid(x).name() << std::e...
分类:
其他好文 时间:
2015-04-24 01:03:07
阅读次数:
186
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace _...
分类:
其他好文 时间:
2015-04-23 19:34:10
阅读次数:
114