码迷,mamicode.com
首页 > 2014年09月11日 > 全部分享
neHe OpenGL lession 6
NeHe OpenGL 加载纹理...
分类:其他好文   时间:2014-09-11 22:25:22    阅读次数:298
Oracle 客户端下载
Oracle 客户端下载...
分类:数据库   时间:2014-09-11 22:25:12    阅读次数:765
栈和递归之Hanoi塔
hanoi塔 代码#include void move(char x,int n,char y) { static int k=1; printf("Step %d : %d from %c >>->> to %c \n",k++,n,x,y); } void hanoi(int n,char A,char B,char C) { if(n==1) { move(A, 1, C)...
分类:其他好文   时间:2014-09-11 22:25:02    阅读次数:277
私服搭建Nexus
一:代理仓库central 指向maven 的中央仓库Apache Snapshots 指向apache 的代理maven 仓库具体代理仓库的设置参数如下:二:第三方仓库:用户自己上传的jar (宿主仓库)上传第三方jar 包:如果上传的jar 包需要依赖其他的jar 包,可以用pom 的方式上传第...
分类:其他好文   时间:2014-09-11 22:24:22    阅读次数:234
android ListView与EditText共存错位
在一个ListView中,如果里面有EditText会很麻烦,因为修改EditText里面的数据会发生错位现象.这时候,需要在适配器BaseAdapter的getView中设置setTag(),将position缓存起来.下面来解决这个问题.1.打开activity_main.xml . 在这个布局...
分类:移动开发   时间:2014-09-11 22:24:12    阅读次数:468
为什么使用do{}while(0)来进行宏定义
最近发现很多代码在进行宏定义的时候使用喜欢使用#define MACRO_NAME(para) do{macro content}while(0)的格式,总结了以下几个原因:1,空的宏定义避免warning:#define foo() do{}while(0)2,存在一个独立的block,可以用来进...
分类:其他好文   时间:2014-09-11 22:24:02    阅读次数:191
学习百度地图出现的问题
出现错误如下:09-11 13:54:14.222: E/Trace(1321): error opening trace file: No such file or directory (2)09-11 13:54:15.422: E/AndroidRuntime(1321): FATAL EXC...
分类:其他好文   时间:2014-09-11 22:23:52    阅读次数:313
每天一记--2014.9.11
今天仅有一个小程序:求幂运算 这只是比较优化的一个算法,能有效减少乘法次数,但是不是最优的 这个只是分解得到2的幂次的乘幂 1 package shishi; 2 3 public class QiuMi { 4 5 public static void main(String[] ar...
分类:其他好文   时间:2014-09-11 22:23:42    阅读次数:219
关于结构体的大小
TRecord2 = record a: Integer; b: Integer; c: Integer; end; TRecord1 = record a: Byte; case Integer of 0: (a1: TRecord2); 1: (a2: Int64); end; 第一步是要知道结...
分类:其他好文   时间:2014-09-11 22:23:32    阅读次数:261
Java项目开发第二天
相对来说今天还是轻松了挺多的,好了,刚刚跑完步,今天心情不错,直接进入主题,就不废话了。(PS:室友都去准备迎新了,老大也是,还好都将课本留给我了,可以好好的看看书了,好好学习,天天向上。)图形用户界面基础:GUI API包含的类可以分为三组:组件类,容器类,辅助类用instanceof判断就知道有...
分类:编程语言   时间:2014-09-11 22:23:22    阅读次数:200
laravel加载javascript库
一篇文章:Generating a Link to a Javascript FileProblemYou want your Blade template to load an external javascript file.Instead of usingIf the file path yo...
分类:编程语言   时间:2014-09-11 22:23:02    阅读次数:357
The Aggregate Magic Algorithms
http://aggregate.org/MAGIC/The Aggregate Magic AlgorithmsThere are lots of people and places that create and collect algorithms of all types (hereare ...
分类:其他好文   时间:2014-09-11 22:22:52    阅读次数:400
简单I/O
OutputStream,InputStream,FileOutputStream,FileInputStream.fis = new FileInputStream("C:/Desktop/from.txt"); fos = new FileOutputStream("C:/Desktop/t.....
分类:其他好文   时间:2014-09-11 22:22:42    阅读次数:246
设计模式系列之生成器模式
builder模式主要用于创建复杂对象,着重于复杂对象的内部构建。通过将构建过程与表示分离,同一个构建过程可以生产不同的外部表示。builder模式由导向器和生成器构成,导向器负责构建过程,生成器负责生产对象的外部表示。导向器包含有一个生成器,当需要更换对象表示时,只需要换一个生成器即可。上篇文章设...
分类:其他好文   时间:2014-09-11 22:22:32    阅读次数:282
UVA 12563 Jin Ge Jin Qu hao DP
背包可行性 有点SB,wa了好几发#include #include #include #include #include #include #include #include #include #include #include #include #include #include #includ...
分类:其他好文   时间:2014-09-11 22:22:22    阅读次数:174
写一个函数,能获取文件后缀
1.substrsubstr(start,length)表示从start位置开始,截取length长度的字符串。varsrc="images/off_1.png";alert(src.substr(7,3));弹出值为:off2.substringsubstring(start,end)表示从sta...
分类:其他好文   时间:2014-09-11 22:22:12    阅读次数:223
java--自定义注解
java注解一般分为三大类: 1.标记注解 2.标记元注解 3.一般注解 其中1.标记注解包括 一 override:覆盖超类中的方法 二 Deprecated : 丢弃的类 三 SuppressWarings...
分类:编程语言   时间:2014-09-11 22:22:02    阅读次数:184
1621条   上一页 1 ... 7 8 9 10 11 12 13 ... 96 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!