传送门1614. National Project “Trams”Time limit: 0.5 secondMemory limit: 64 MBPresident has declared the development of tram service a priority national p...
分类:
其他好文 时间:
2015-03-16 21:01:59
阅读次数:
185
android.content.ActivityNotFoundException: Unable to find explicit activity class {com.android.settings/com.android.settings.deviceinfo.SoftwareUpdates}; have you declared this activity in your Androi...
分类:
移动开发 时间:
2015-03-10 19:23:52
阅读次数:
201
【现象】Eclipse+Pydev 开发时,运行时提示如下:
SyntaxError: Non-ASCII character '\xe5' in file D:\..\src\Auto.py on line 2, but no encoding declared; see http://www.python.org/peps/ for details
【原因】代码中含中文,Python的文件,默认的编码是ASCII,而Eclipse中默认的编码方式是GBK,所以出错。
【处理】在Python代码中的编...
分类:
系统相关 时间:
2015-02-25 22:25:51
阅读次数:
382
在Cocos2d-x项目中用到了OpenGL,使用GL_LINE_SMOOTH开启线条抗锯齿。
ccDrawColor4B(50, 26, 12, 255);
// 设置线宽
glLineWidth(2.0f);
// 启用线段反锯齿
glEnable(GL_LINE_SMOOTH);
// 画第一条线
ccDrawLine(startPoint1,endPoint);...
分类:
移动开发 时间:
2015-02-13 16:35:48
阅读次数:
1973
The methods declared by theUIScrollViewDelegateprotocol allow the adopting delegate to respond to messages from theUIScrollViewclass and thus respond ...
分类:
其他好文 时间:
2015-02-08 00:18:13
阅读次数:
237
iOS编程过程中,经常看到一些属性前面有些修饰符,比如copy,retain等。这些关键字,是Object-C语言中,对于Property的setter。Mac官网:The Objective-C Programming Language – Declared Properties – Setter...
分类:
其他好文 时间:
2015-01-30 10:42:24
阅读次数:
190
用VS的NMAKE构建,不会报错,但是用GNU MAKE构建,就会报错。(尝试删除Toast.h中第24行的声明)因此在遇到类似的情况的时候,记得不仅class里面要有friend声明,namespace里面也要有声明点此下载demo
分类:
其他好文 时间:
2015-01-29 19:14:24
阅读次数:
121
当输出中文时,错误信息如下:SyntaxError at /time/Non-ASCII character '\xe7' in file e:\pythonCode\firstsite\firstsite\view.py on line 15, but no encoding declared; ...
分类:
编程语言 时间:
2015-01-19 18:54:17
阅读次数:
154
问题1:SyntaxError: Non-ASCII character '\xe5' in file E:\PythonDev\testmodule.py on line 21, but no encoding declared; see http://python.org/dev/pe...
分类:
编程语言 时间:
2015-01-16 15:58:16
阅读次数:
262
在使用Python编译的时候出现如下错误:
SyntaxError: Non-ASCII character '\xe5' in file Test1.py on line 8, but no encoding declared; see http://www.python.org/peps/pep-0263.html
for details
解决方法:python的默认编码文件是用的...
分类:
编程语言 时间:
2015-01-09 14:18:29
阅读次数:
236