从http://www.eclipse.org/downloads/官网下载对应的操作系统版本号的文件,例如windows 64 bit,下载之后打开eclipse.exe就提示java was started but returned exit code = 1等之类的错误弹层,Eclipse启动...
分类:
编程语言 时间:
2014-10-29 12:46:00
阅读次数:
184
Code Like a Pythonista: Idiomatic Python如果你有C++基础,那学习另一门语言会相对容易。因为C++即面向过程,又面向对象。它很底层,能像C一样访问机器;它也很高级,有模板、STL等。如果认真读过《深入C++对象模型》,我想其它语言不会比这个更复杂。你对C++了...
分类:
编程语言 时间:
2014-10-29 12:42:28
阅读次数:
172
1、svn获取代码svn checkout https://svn.code.sf.net/p/qwt/code/trunk/qwt2、生产makefileqmake3、编译(确保已经安装了qopengl再进行这一步,不然失败)make4、安装make install
分类:
系统相关 时间:
2014-10-29 12:33:36
阅读次数:
185
题目大意:给出一个2*n的条形区域,问用2*1和2*2的方格一共有多少种摆放的方法。
思路:f[i] = f[i - 1] + f[i - 2] * 2
写一个高精度加法就可以了。
CODE:
#include
#include
#include
#include
#include
#define MAX 260
#define BASE 1000
using...
分类:
其他好文 时间:
2014-10-29 09:14:53
阅读次数:
145
jQuery官方文档上推荐开发插件时要按下面格式来写,我第一次看源代码时看到这样的写法,被郁闷了好半天。(function($) {// Code goes here})(jQuery);下面将记录为什么这样写,这样写具体有哪些好处。其实上面这种方式等价于下面这种定义方式, 不过上面的方式更安全.与...
分类:
Web程序 时间:
2014-10-29 09:12:46
阅读次数:
183
代码如下:SELECTCOUNT(1)
--INTOv_Count
FROMOrg_Organization_DefinitionsOod,Hr_All_Organization_UnitsHaou
WHERE1=1
ANDOod.Organization_Code=‘&Organization_Code‘
ANDOod.Organization_Id=Haou.Organization_Id
ANDHaou.Internal_External_Flag=‘INT‘
ANDEXISTS(SE..
分类:
其他好文 时间:
2014-10-29 02:11:59
阅读次数:
228
1,定义同步的类: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace Engine.App_Code { 7 ...
分类:
其他好文 时间:
2014-10-29 01:41:36
阅读次数:
766
download SDL 1.2.xxx version source code.1) configure2) make & make instlldownload recent ffmpeg source code.1) configure --enable-ffplay2) vi ffplay....
分类:
其他好文 时间:
2014-10-29 01:40:36
阅读次数:
203
/* 学生表(t_student)create table t_student( _id int primary key auto_increment, _name varchar(50), -- 名字 _age int, -- 年龄 _code varchar(50), -- 编号 _sex .....
分类:
数据库 时间:
2014-10-29 01:38:53
阅读次数:
233
the learning curve become longer and steeper .as the increasingly complex , the newbie or newcomers become harder .to make the source code sensible in...
分类:
系统相关 时间:
2014-10-28 23:37:36
阅读次数:
265