上一页 1 ··· 523 524 525 526 527
摘要: 1. 函数说明pipe(建立管道):1) 头文件 #include2) 定义函数: int pipe(int filedes[2]);3) 函数说明: pipe()会建立管道,并将文件描写叙述词由參数filedes数组返回。 filedes[0]为管道里的读取端 filedes[1]则为管道的写入端... 阅读全文
posted @ 2014-06-02 20:45 zfyouxi 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 新浪微博的OpenAPI登录public static IEnumerator LoginRequest(string userid, string passwd, Action action) { xDebug.Log("GetRequest 1"); strin... 阅读全文
posted @ 2014-06-02 20:33 zfyouxi 阅读(1886) 评论(0) 推荐(0) 编辑
摘要: 看了Mustache的github,学学此中的语法,做个笔记1.简单的变量调换:{{name}}1 var data = { "name": "Willy" };2 Mustache.render("{{name}} is awesome.",data);返回成果Willyis awesome.2.... 阅读全文
posted @ 2014-06-02 20:08 zfyouxi 阅读(354) 评论(0) 推荐(0) 编辑
摘要: 本文的实现是參照我之前在做iOS时实现的一个能够循环的列表这里用C++重写一遍。效果:原文地址:http://blog.csdn.net/qqmcy/article/details/27393011用法:能够使用创建project时的HelloWorld測试,h文件里加入循环列表的监听回调 void... 阅读全文
posted @ 2014-06-02 20:07 zfyouxi 阅读(658) 评论(0) 推荐(0) 编辑
摘要: 读可读写模拟量寄存器:发送命令(主机向从机)格式:[设备地址][命令号03][起始寄存器地址高8位][低8位][读取的寄存器数高8位][低8位][CRC校验的低8位][CRC校验的高8位]例:[11][03][00][6B][00][03][CRC低][CRC高]意义例如以下:11:设备地址,样例中... 阅读全文
posted @ 2014-05-31 14:36 zfyouxi 阅读(4921) 评论(0) 推荐(0) 编辑
摘要: 对于一个应用程序而言,静态链接库可能被载入多次,而动态链接库仅仅会被载入一次。Gameloft面试之错误一Event:面试官说例如以下程序是能够链接通过的.class Base{Public:Base(void){this-> initialize();}virtual void initial... 阅读全文
posted @ 2014-05-31 13:34 zfyouxi 阅读(632) 评论(0) 推荐(0) 编辑
摘要: 这里仅仅是做简单的记录怎样实现。一、基于配置文件的实现 ①编写须要调度的类package com.study;import org.springframework.scheduling.annotation.Scheduled;import org.springframework.stereot... 阅读全文
posted @ 2014-05-31 13:07 zfyouxi 阅读(414) 评论(0) 推荐(0) 编辑
摘要: eeplat:Open Source Metadata PaaS開始学习的时候仅仅是下了整个项目而且跑通,顺手在这个平台自己主动化的建立 了个管理系统,接下来開始深入研究这个开源平台所谓元数据(metadata)即描写叙述数据的数据(data about data),在EEPlat中,对于描写叙述业... 阅读全文
posted @ 2014-05-29 11:37 zfyouxi 阅读(352) 评论(0) 推荐(0) 编辑
上一页 1 ··· 523 524 525 526 527