上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 40 下一页
摘要: //By smells2 at Lab 2012-02-21#include #include #include #include #include #include #include #include #include #include int main(){ osg::ref_ptr root ... 阅读全文
posted @ 2014-09-17 17:07 酷熊 阅读(4491) 评论(0) 推荐(0) 编辑
摘要: 1历史 Prefast是微软研究院提出的静态代码分析工具。主要目的是通过分析代码的数据和控制信息来检测程序中的缺陷。需要强调的是,Prefast检测的缺项不仅仅是安全缺陷,但是安全缺陷类型是其检测的最为重要的部分。Prefast推出后在微软内部得到了广泛的使用,并经历了若干格版本的升级。现在,微... 阅读全文
posted @ 2014-08-29 16:31 酷熊 阅读(463) 评论(0) 推荐(0) 编辑
摘要: /** Gets the parent path from full name (Ex: /a/b/c.Ext => /a/b). */extern OSGDB_EXPORT std::string getFilePath(const std::string& filename);/** Gets ... 阅读全文
posted @ 2014-08-19 09:33 酷熊 阅读(556) 评论(0) 推荐(0) 编辑
摘要: Forbidden You don't have permission to access /DuoLamPHP/index.php on this server. <Directory /> AllowOverride none Require all denied</Directory> 修改成 阅读全文
posted @ 2014-07-29 11:22 酷熊 阅读(929) 评论(0) 推荐(0) 编辑
摘要: Internal Server ErrorThe server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server ad... 阅读全文
posted @ 2014-07-29 11:10 酷熊 阅读(802) 评论(0) 推荐(0) 编辑
摘要: main.cpp测试代码#include "TestSmartPointer"void fun(){ SP sp1=new TestSmartPointer("A"); SP sp2=sp1; sp1=sp2;}void main(){ fun(); //system(... 阅读全文
posted @ 2014-06-10 15:27 酷熊 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 一个新建的.xib文件(Xcode's Interface Builder),有一个默认的View,也就是self.view,是主视图其他新建的View可以在viewDidLoad()函数中使用[self.view addSubviews: self.otherView];添加到主视图中去 阅读全文
posted @ 2014-06-09 17:23 酷熊 阅读(909) 评论(0) 推荐(0) 编辑
摘要: 找到工程中的Supporting Files/工程名-info.plist添加设置1、status bar is initially hidden=YES2、View Controller-based status bar application=NO 阅读全文
posted @ 2014-06-09 17:19 酷熊 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 在C++代码中想调用显示一个IOS界面,使用NSNotificationCenter1、在界面中注册消息[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(mytestFunc:)name:@" mytest"... 阅读全文
posted @ 2014-06-09 17:16 酷熊 阅读(835) 评论(0) 推荐(0) 编辑
摘要: NSArray* ary=[[NSFileManager defaultManager] contentsOfDirectoryAtPath:[[NSBundle mainBundle] pathForResource:@"folderName" ofType:nil] error:nil]; 阅读全文
posted @ 2014-06-09 17:09 酷熊 阅读(1324) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 40 下一页