会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
奋斗吧胡小新!
时不我待 我必前行
CnBlogs
Home
New Post
Contact
Admin
Subscription
2014年12月4日
ABAP学习之路 - Global Class
程序功能:根据航空公司编号(scarr-carrid)查找航空公司(scarr表)信息学习点:Global Class, Static Method, Exception Handling, Structure源代码:1. Global Class(公用类)提供静态方法 GET_CARRIER, 以...
Read More
posted @ 2014-12-04 14:03 奋斗吧胡小新
Views(522)
Comments(0)
Diggs(1)
2014年4月19日
c++ const指针和指向const对象的指针
1 #include 2 using namespace std; 3 int main() 4 { 5 int a1 = 1; 6 const int a2 = 2; 7 const int * p2 = &a2; //"自以为"指向const对象的指针, 可以指...
Read More
posted @ 2014-04-19 01:03 奋斗吧胡小新
Views(249)
Comments(0)
Diggs(0)
2012年10月27日
tomcat "Unable to compile class for JSP" 错误解决方案
出现这个问题的原因是因为在classes中没有放置包文件的缘故,就是因为把类直接放在classes文件下就出现无法编译通过解决方法:不要直接在default package下创建类文件,新建一个package,如pack,然后再创建类,保存就可以了参考:http://laies.iteye.com/blog/309186
Read More
posted @ 2012-10-27 12:54 奋斗吧胡小新
Views(1072)
Comments(0)
Diggs(0)
2012年9月16日
2012-9-16
1. sh文件的两种运行方法(1)sudo su (进入root权限) ./xxx.sh(2)sh xxx.sh建议使用man sh查看详细说明2.Linux下几个命令的使用a.复制A文件夹到B文件夹(包含A文件夹本身)cp -r A B (-r是递归的意思)b.复制A文件夹下的所有内容到B文件夹(不包含A文件夹本身)cp -r A/. Bc.删除文件夹A的命令rm -rf A3. Ubuntu下JDK的安装与配置:a.安装简单,下载好压缩包解压就行了(比如解压到/usr/java/下);$tar zxvf jdk-7u9-linux-i586.tar.gzb.配置环境变量vim ~/....
Read More
posted @ 2012-09-16 16:25 奋斗吧胡小新
Views(193)
Comments(0)
Diggs(1)
公告