码迷,mamicode.com
首页 >  
搜索关键字:library    ( 9097个结果
eclipse创建android项目,无法正常预览布局文件的相关问题
eclipse创建android项目时,预览layout.xml文件时提示:This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in...
分类:移动开发   时间:2015-11-04 14:36:04    阅读次数:214
【c++】标准模板库STL入门简介与常见用法
一、STL简介1、什么是STLSTL(Standard Template Library)标准模板库,主要由容器、迭代器、算法、函数对象、内存分配器和适配器六大部分组成。STL已是标准C++的一部分,使用STL开发系统可以提高开发效率。2、容器(Containers)容器类是可以包含其它对象的模板类...
分类:编程语言   时间:2015-11-04 12:53:16    阅读次数:341
[PowerShell]Quote in String
今天遇到一个问题,如何在Select-String的Pattern参数里能使用双引号比如 Select-String -path . -pattern "Lines: 100% " 是不能工作的查看了文档https://technet.microsoft.com/en-us/library/hh84...
分类:系统相关   时间:2015-11-04 11:14:40    阅读次数:176
ios NSNotificationCenter 收到通知后的执行线程
https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Notifications/Articles/Threading.html#//apple_ref/doc/uid/20001289-CEGJFDFGDeli...
分类:移动开发   时间:2015-11-03 17:48:05    阅读次数:251
iOS AppIcon尺寸
如果提交的ipa包中,未包含必要的Icon就会收到类似的通知,为什么偏偏是Icon-76呢?因为我们开发的游戏,默认是支持iphone以及ipad的,根据官方提供的参考 Icon-76.png是必须要提供的详情可参考这里:https://developer.apple.com/library/ios...
分类:移动开发   时间:2015-11-03 10:22:55    阅读次数:1165
浅谈C#集合
集合是.NET FCL(Framework Class Library)中很重要的一部分,也是我们开发当中最常用到的功能之一,几乎是无处不在。俗话说知其然,知其所以然,平常看到IEnumerable,IEnumerator,ICollection是不是知道他们之间各自的区别?除了List和Dicti...
分类:Windows程序   时间:2015-11-02 22:57:06    阅读次数:327
iOS keyChain
keychain在ios中是保存在sqlite数据库中的。这个数据库文件的位置:真机:/private/var/Keychains/keychain-2.db虚拟机:/Users/USER-HOME/Library/Developer/CoreSimulator/Devices/26DCA62C-B...
分类:移动开发   时间:2015-11-02 19:28:16    阅读次数:288
eclipse创建android项目,无法正常预览布局文件,出现This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in...
eclipse创建android项目时,预览layout.xml文件时提示:This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in...
分类:移动开发   时间:2015-11-02 11:38:23    阅读次数:245
R语言randomForest包实现随机森林——iris数据集和kyphosis数据集
library(randomForest)model.forest<-randomForest(Species~.,data=iris)pre.forest<-predict(model.forest,iris)table(pre.forest,iris$Species)library(rpart)...
分类:编程语言   时间:2015-11-01 15:17:44    阅读次数:1437
R语言AMORE包实现BP神经网络——German数据集
library(AMORE)data=1.5)] <- 2sum = 0for(i in 1:500){if(y[i]==test[i,25]){sum =sum+1}}cat("正确率", sum/500, "n")
分类:编程语言   时间:2015-10-31 15:40:10    阅读次数:1092
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!