摘要:
先执行adbnodaemonserver,查看adb server的端口是多少C:\Users\xxxx>adbnodaemonserver cannotbind'tcp:5037'再执行下netstat-ano|findstr"5037"C:\Users\xxxxxx>netstat-ano|fi... 阅读全文
摘要:
#include "base/ccMacros.h" 阅读全文
摘要:
1. 配置引擎根目录支持C/C++->常规->附加包含目录->增加->$(EngineRoot)2. 引入头文件#include "cocos-ext.h"using namespace cocos2d::extension;3. 测试代码:bool HelloWorld::init(){ i... 阅读全文
摘要:
1. 官网下载最新的Boost库,我的是1.552.在使用vs2013编译boost-1.55.0之前,先要给boost做下修改:boost_1_55_0\boost\intrusive\detail\has_member_function_callable_with.hpp line:222tem... 阅读全文
摘要:
IntSLList.h//************************ intSLList.h **************************// singly-linked list class to store integers#ifndef INT_LINKE... 阅读全文
摘要:
菜单都以MenuItem开头MenuItemLabel - 文本菜单项MenuItemImage - 图片菜单项// on "init" you need to initialize your instancebool HelloWorld::init(){ if (!Layer::init(... 阅读全文
摘要:
1. ViewsA view (an object whose class is UIView or a subclass of UIView) knows how to draw itself into a rectangular area of the interface.Your app ha... 阅读全文
摘要:
1. 首先,要编写windows下socket程序,必须要加入Winsock支持2. 服务端监听程序(Server.cpp)#include //包含头文件#include#include#pragma comment(lib,"WS2_32.lib")... 阅读全文
摘要:
看看下面的程序有什么问题:BNRItem.h@interface BNRItem : NSObject@property (nonatomic, strong) BNRItem *containedItem;@property (nonatomic, strong) BNRItem *contain... 阅读全文
摘要:
如题 解决方案如下: 1.先把eclipse关闭.2.在管理器转到你的android SDK 的platform-tools下3.键入adb kill-server ,如果adb关闭了会提示 server not running * 4.再输入 adb start-server 如果不成功会提示 d 阅读全文