摘要: 想学shell的同学请记住: 如果你写好脚本后不给脚本执行权限那也是不行的: 添加执行权限: chmod +x 脚本名.sh 在Linux shell中有一个脚本编译命令: bash -v 脚本名.sh bash -x 脚本名.sh example: bash -v test.sh bash -x 阅读全文
posted @ 2013-11-06 10:02 Talbot3 阅读(2369) 评论(0) 推荐(0) 编辑
摘要: #ifdef __cplusplus #include <cstdlib> #else #include <stdlib.h> #endif #include <SDL/SDL.h> #include <string> const int SCREEN_WIDTH=640; const int SC 阅读全文
posted @ 2013-11-06 09:31 Talbot3 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 1 #ifdef __cplusplus 2 #include <cstdlib> 3 #else 4 #include <stdlib.h> 5 #endif 6 7 #include <SDL/SDL.h> 8 9 int main( int argc, char* args[] ) 10 { 阅读全文
posted @ 2013-11-06 09:26 Talbot3 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 1 #include<iostream> 2 using namespace std; 3 4 class Base0 5 { 6 public: 7 int var0; 8 void fun0() 9 { 10 cout<<"Member of Base0"<<endl; 11 } 12 }; 1 阅读全文
posted @ 2013-11-06 09:19 Talbot3 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 1 //多继承同名隐藏 2 #include <iostream> 3 4 using namespace std; 5 6 class Base1 7 { 8 public: 9 int var; 10 void fun() 11 { 12 cout<<"Member of Base1"<<end 阅读全文
posted @ 2013-11-06 09:15 Talbot3 阅读(511) 评论(0) 推荐(0) 编辑