摘要:
1. 函数说明pipe(建立管道):1) 头文件 #include2) 定义函数: int pipe(int filedes[2]);3) 函数说明: pipe()会建立管道,并将文件描写叙述词由參数filedes数组返回。 filedes[0]为管道里的读取端 filedes[1]则为管道的写入端... 阅读全文
摘要:
新浪微博的OpenAPI登录public static IEnumerator LoginRequest(string userid, string passwd, Action action) { xDebug.Log("GetRequest 1"); strin... 阅读全文
摘要:
看了Mustache的github,学学此中的语法,做个笔记1.简单的变量调换:{{name}}1 var data = { "name": "Willy" };2 Mustache.render("{{name}} is awesome.",data);返回成果Willyis awesome.2.... 阅读全文
摘要:
本文的实现是參照我之前在做iOS时实现的一个能够循环的列表这里用C++重写一遍。效果:原文地址:http://blog.csdn.net/qqmcy/article/details/27393011用法:能够使用创建project时的HelloWorld測试,h文件里加入循环列表的监听回调 void... 阅读全文