上一页 1 ··· 15 16 17 18 19
打开多个文件:1.vim还没有启动的时候:在终端里输入 vim file1 file2 ... filen便可以打开所有想要打开的文件2.vim已经启动输入:open file可以再打开一个文件,并且此时vim里会显示出file文件的内容。同时显示多个文件::split:vsplit在文件之间切换:1.文件间切换Ctrl+6—下一个文件:bn—下一个文件:bp—上一个文件对于用(v)split在多个窗格中打开的文件,这种方法只会在当前窗格中切换不同的文件。2.在窗格间切换的方法Ctrl+w+方向键——切换到前/下/上/后一个窗格Ctrl+w+h/j/k/l ——同上Ctrl+ww——依次向后切 Read More
posted @ 2012-04-18 23:09 kobe8 Views(286) Comments(0) Diggs(0) Edit
今天开始重新学习C语言时,用tcc编译时报错:"unable to open file:c0s.obj ",上网查了下原因,没有找到,但大致的解决办法如下:1:将压缩包解压到C:\\ ,(这时在你的C盘里会直接看到turboc2,即C→turboc2). 2:打开turboc2,新建一个文件夹取名为"output",下面有用哦. 3:运行TC,选主菜单Options→Directories回车, Include directories:C:\\TURBOC2\\ INCLUDELibrary directories:C:\\TURBOC2\\ LIB Ooutput dir Read More
posted @ 2012-04-16 23:40 kobe8 Views(1694) Comments(0) Diggs(0) Edit
java程序写的没有太大难度:public class HelloJNI { /** * 走向内力的第一步 * @param args */ static{ System.loadLibrary("JNItest"); } public static void main(String[] args) { new HelloJNI().sayHello(); //System.out.println(System.getProperty("java.library.path")); } public native void sayHello();}主要问题 Read More
posted @ 2012-04-15 23:40 kobe8 Views(173) Comments(0) Diggs(0) Edit
http://uestzengting.iteye.com/?page=2 Read More
posted @ 2012-03-10 21:09 kobe8 Views(118) Comments(0) Diggs(0) Edit
该文被密码保护。 Read More
posted @ 2012-03-03 21:25 kobe8 Views(3) Comments(0) Diggs(0) Edit
上一页 1 ··· 15 16 17 18 19