码迷,mamicode.com
首页 >  
搜索关键字:annotation-config co    ( 7094个结果
embedded android 协同翻译继续招募中
第一章和第三章已经开始翻译中, 第二章和第四章还等待认领。 协同翻译继续招募中 Embedded_Android_in_Chinese 描述: co-work QQ群: 15997841book pdf 文档位于source/下面,请依据这个文档进行翻译 当前进度 章节认领中...... github参与简明流程 初...
分类:移动开发   时间:2014-09-22 18:22:23    阅读次数:306
Codeigniter框架——config配置文件说明
配置说明$config['language']:指定项目语言包。需要注意的时Codeigniter自带的类库错误提示语言包位于/system/language/english/目录下,当这里配置非english时, 如果需要用到这些类库,则需要拷贝语言包到指定的目录中,否则会出现load出错。$co...
分类:其他好文   时间:2014-09-22 15:54:12    阅读次数:225
BZOJ1584 USACO 2009 Mar Gold 2.Cleaning Up
题目大意:有长度为N的颜色段,共有m种颜色,要将其划分成若干段,每一段的费用为这一段的不同颜色的数目的平方。求最小总费用。 Sol: 首先我们注意到答案不超过n,因为我们显然可以将每一个划分为一段,答案为n. 于是每一段的颜色总数不超过sqrt(n). 因此我们维护最后出现的sqrt(n)种颜色最后出现的位置,进行转移。 总的时间复杂度为O(n*sqrt(n)). Co...
分类:其他好文   时间:2014-09-22 10:59:52    阅读次数:274
[Java Performance] Java垃圾回收简介
本系列作为Java Performance:The Definitive Guide的读书笔记。 概览 在目前的JVM中,主要有4中垃圾回收器(Garbage Collector): 串行回收器(Serial Collector),主要用于单核计算机吞吐量(并行)回收器(Throughput/Parallel Collector)并发回收器(Concurrent/CMS Co...
分类:编程语言   时间:2014-09-21 18:47:50    阅读次数:224
ActiveRecord::ConnectionAdapters::SchemaStatements | 有关 Column 的常见方法笔记
跟 column相关的常见的方法有:column_exists? (table_name, column_name, type = nil, options = {})add_column (table_name, column_name, type, options = {})remove_co....
分类:其他好文   时间:2014-09-21 18:38:31    阅读次数:271
C# 中的 ConfigurationManager类引用方法
在System.Configuration命名空间下死活找不到ConfigurationManager类,运行程序便报错。遇到这样的情况,须要对项目加入引用。方法例如以下:右键references->add references->assemblies下的framework->勾选System.Co...
分类:其他好文   时间:2014-09-21 18:11:11    阅读次数:188
C++盲点
constconst指针1 char greeting[] ="hello"; 2 char* p = greeting; // non-const pointer, non-const data3 const char* p = greeting; // non-const pointer, co...
分类:编程语言   时间:2014-09-21 16:45:40    阅读次数:241
C#对文件进行MD5值检测
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Co...
分类:其他好文   时间:2014-09-21 15:17:10    阅读次数:196
C#对WIindows服务进行操作
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using System.Co...
分类:其他好文   时间:2014-09-21 14:42:10    阅读次数:274
NSMutable sort排序
Compare methodEither you implement a compare-method for your object:- (NSComparisonResult)compare:(Person *)otherObject { return [self.birthDate co...
分类:其他好文   时间:2014-09-20 23:09:39    阅读次数:263
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!