码迷,mamicode.com
首页 >  
搜索关键字:auto summary rip    ( 30448个结果
如何在iOS中使用libxml
本篇文章简单介绍如何在iOS中使用libxml Mac OS版本:10.8.2 XCode版本:4.5.1 1. 选择xcode工程设定 2. 选择target 3. 选择Summary 4. 拉到Linked Frameworks and Libraries的地方,按下+按键 输入libxml并选择libxml2,按下Add按键 ...
分类:移动开发   时间:2014-07-22 23:05:14    阅读次数:519
RIP协议总结
RIP全称Routing Information Protocal(路由信息协议),它是一种基于距离向量的路由选择协议(而OSPF是基于链路状态的路由选择协议),目前被广泛应用于小型网络中。既然RIP是基于距离向量的路由选择协议,所以我们好奇的是究竟什么是距离向量算法?不过在总结距离向量算法之前,我们先介绍点预备知识。...
分类:其他好文   时间:2014-07-22 23:05:12    阅读次数:671
定时器(了解)
// Test.cpp : 定义控制台应用程序的入口点。//#include "../I_Timer.H"#include void onTimer1(){ std::cout createTimer();#if 1 auto myTimer1 = /*Timer::createTime...
分类:其他好文   时间:2014-05-05 23:28:48    阅读次数:341
Cocos2d-x3.0 文件处理
1、从文件中读取内容 auto sharedFileUtils = FileUtils::getInstance(); std::string ret; sharedFileUtils->purgeCachedEntries(); std::vector searchPaths = sharedFileUtils->getSearchPath...
分类:其他好文   时间:2014-05-04 00:09:23    阅读次数:408
Cocos2d3.0 制作PList文件
auto root = Dictionary::create(); auto string = String::create("string element value"); root->setObject(string, "string element key"); auto array = Array::create(); ...
分类:其他好文   时间:2014-05-03 16:27:48    阅读次数:380
纠正for循环中关键字continue的执行顺序
下面是一个小程序,可以很好阐述 关键字:continue,break; package org.song.loop; public class TestLoop { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub int tot...
分类:其他好文   时间:2014-05-03 00:03:21    阅读次数:311
cocos2d-x3.0 RenderTexture(二)
.h #include "cocos-ext.h" #include "ui/CocosGUI.h" #include "cocostudio/CocoStudio.h" USING_NS_CC; USING_NS_CC_EXT; using namespace ui; .cpp auto background = LayerColor::create(Color4B(200,200...
分类:其他好文   时间:2014-05-02 21:27:20    阅读次数:367
使用ssh过程中对数据库进行update时报错
org.springframework.dao.InvalidDataAccessApiUsageException: Write operations are not allowed in read-only mode (FlushMode.NEVER) - turn your Session into FlushMode.AUTO or remove 'readOnly' marker from transaction definition...
分类:数据库   时间:2014-05-01 18:16:35    阅读次数:377
vc 在edit控件中动态插入数据滚动显示
内存从网上论坛摘抄整理思路:给控件设置多行属性,设置垂直滚动条,Auto Vscroll设置为true,放入文本后把插入点设置到末尾pEdit->LineScroll(pEdit->GetLineCount()); 滚动条滚动到最下端int len = pEdit->GetWindowTextLen...
分类:其他好文   时间:2014-05-01 13:27:49    阅读次数:267
Cocos2d3.0 画折线图
实现用2dx画折线图,为以后用2dx开发应用做准备 下面记录下使用方法 auto lineView = DJLineChart::create(); std::vector vec; vec.push_back(130); vec.push_back(520); vec.push_back(60); vec.push_back(0);...
分类:其他好文   时间:2014-04-30 22:47:39    阅读次数:322
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!