码迷,mamicode.com
首页 >  
搜索关键字:error while loading    ( 62470个结果
POJ 1163 The Triangle (简单线性dp)
OJ题目 : click here~~ 题目分析:给一个数字三角形,从最上面一个数字开始,方向只能往左下或者右下,一直到最后一行,求经过的所有数字和的最大值。 搞清楚在输入的数据中,route的方向就行。 AC_CODE int num[102][102]; int main(){ int n , i , j , k ; while(cin >> n){ ...
分类:其他好文   时间:2014-07-22 23:05:55    阅读次数:372
configure: error: ZLib not installed
安装libpng,出现“configure: error: ZLib not installed”。     解决方法:     1. 进入ZLib的安装包,不必加--prefix参数命令: ./configure make && make install     2.  进入libpng解压缩包中,输入: ./configure --prefix=/...
分类:其他好文   时间:2014-05-02 22:38:51    阅读次数:289
python 14章,网络编程
一,socket 模块 套接字包括两类:服务器,客户机, 创建一个套接字后让它等待连接 服务器: import socket s = socket.socket() port = 1234 host = socket.gethostname() print host s.bind((host,port)) s.listen(5) while True: get,addr = s...
分类:编程语言   时间:2014-05-02 21:59:57    阅读次数:444
jquery.validate自定义验证--成功提示与择要提示
1. 自定义验证--成功提示 1) 添加选项 errorClass: "unchecked", validClass: "checked", errorElement: "span", errorPlacement: function (error, element) { if (element.parent().find("span[for=""" + element.attr("id...
分类:Web程序   时间:2014-05-02 18:38:21    阅读次数:467
51,是的,没有休息
今天,所谓的劳动节,其实只是给予大部分行业的人,但是对于技术类或者是服务行业,都是没有所谓的休息假期。因为每次放假,反而是一个商机。 早上,刚整理完店面摆设,没多久就来了一位客户需要重装电脑。说电脑中毒,一开机检测, disk error, 问是否需要保存资料,得到的是“...
分类:其他好文   时间:2014-05-02 12:47:30    阅读次数:354
错误gcc -O2 -Wall -DLUA_COMPAT_ALL -DLUA_USE_LINUX -c -o lua.o lua.clua.c:67:31: error:
编译Lua时,出现这样的错误: gcc -O2 -Wall -DLUA_COMPAT_ALL -DLUA_USE_LINUX -c -o lua.o lua.clua.c:67:31: error:       查阅了一下,centOS上需要安装readline-devel ncurses-devel yum install readline-devel ncurses-devel  ...
分类:系统相关   时间:2014-05-02 07:03:00    阅读次数:455
android启动界面
启动界面的效果图: 实现的原理:在一个线程中让几幅图片进行循环显示,实现了动画的效果。 主要的实现类LoadingView是自定义控件,继承了ImageView,实现了Runnable接口 : package wht.android.loading; import android.content.Context; import android.graphics.Canvas; imp...
分类:移动开发   时间:2014-05-02 05:06:02    阅读次数:371
IOS 设置Launch image停留时间
- (void)viewDidLoad{ [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. [NSThread sleepForTimeInte...
分类:移动开发   时间:2014-05-02 00:25:42    阅读次数:441
Eclipse中使用Ant打Android包报错解决方案 – Perhaps JAVA_HOME does not point to the JDK
问题描述: 在Eclipse中运行ant批量打包工具出错,日志信息如下: D:\Android\android-sdk-windows\tools\ant\build.xml:601: The following error occurred while executing this line: D:\Android\android-sdk-windows\tools\ant\bui...
分类:移动开发   时间:2014-04-30 22:48:39    阅读次数:359
查询、创建、设置注册表键值的示例代码
示例代码将在注册表位置:HKEY_CURRENT_USER\Software\  读写键值 bool LicenseManage::OpenRegKey(HKEY& hRetKey) { if (ERROR_SUCCESS == RegOpenKey(HKEY_CURRENT_USER,"Software", &hRetKey)) { return true; ...
分类:其他好文   时间:2014-04-30 22:12:40    阅读次数:195
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!