码迷,mamicode.com
首页 >  
搜索关键字:terms    ( 343个结果
mongoDB与sql聚合操作对应图
SQL Terms, Functions, and Concepts MongoDB Aggregation OperatorsWHERE $matchGROUP BY $groupHAVING $matchSELECT ...
分类:数据库   时间:2014-07-28 23:54:34    阅读次数:475
app被Rejected 的各种原因翻译
(原文:http://www.cnblogs.com/sell/archive/2013/02/16/2913341.html)1. Terms and conditions(法律与条款)1.1As a developer of applications for the App Store you ...
分类:移动开发   时间:2014-07-25 14:05:51    阅读次数:332
平时的笔记02:处理fnmatch模块
# Copyright 2006 Joe Wreschnig## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public Li...
分类:其他好文   时间:2014-07-22 22:36:33    阅读次数:351
codeforces 446C DZY Loves Fibonacci Numbers(数学 or 数论+线段树)
In mathematical terms, the sequenceFnof Fibonacci numbers is defined by the recurrence relationF1?=?1;F2?=?1;Fn?=?Fn?-?1?+?Fn?-?2(n?>?2).DZY loves Fib...
分类:其他好文   时间:2014-07-16 16:45:19    阅读次数:418
Effective C++ Item 39 明智而审慎地使用 private 继承
经验:private 继承意味 is-implemented-in-terms of。它通常比 composition 的级别低。 但是当 derived class 需要访问 protected base class 的成员,或需要重新定义继承而来的 virtual 函数时,这么设计是合理的 经验:和 composition 不同, private 继承可以造成 empty base 最优化。这对致力于“对象尺寸最小化”的程序库开发者而言,可能很重要 示例1:虽是 Empty class,但却不仅要花...
分类:编程语言   时间:2014-07-15 22:41:05    阅读次数:284
Effective C++ Item 38 通过复合塑模出 has-a 或 is-implemented-in-terms-of
经验:在应用域,复合意味着 has-a。 在实现域,复合意味着 is-implemented-in-terms-of 示例: template //将list应用于 Set。错误做法 class Set: public std::list {...}; 解析: public 继承表示 is-a,即如果D是一种B,对B为真的每一件事,对D也应该为真。但list可以包含相同的元素,而Set不可以 纠正: template class Set{ publi...
分类:编程语言   时间:2014-07-12 23:02:43    阅读次数:369
MYSQL术语表
MYSQL术语表http://dev.mysql.com/doc/refman/5.6/en/glossary.htmlMySQL GlossaryThese terms are commonly used in information about the MySQL database server...
分类:数据库   时间:2014-07-07 18:27:17    阅读次数:524
Effective C++:条款38:通过复合塑模出has-a或“根据某物实现出”
(一) public继承是“is-a“的关系,而复合有”has-a“或”根据某物实现出(is-implemented-in-terms-of)“的意思——当复合发生在应用域内的对象之间,表现出has-a关系;当它发生于实现域内则是表示“根据某物实现出”的关系。 应用域部分,相当于你塑造的世界中的某些事物,例如人,汽车等。 后者的对象则是实现细节人工产品(这产品现实世界中是没有的),像什么...
分类:编程语言   时间:2014-07-06 11:47:13    阅读次数:215
Glossary of view transformations
Glossary of view transformationsThe following terms are used to define view orientation, i.e. transformation from World Coordinates (WC) to the View R...
分类:其他好文   时间:2014-06-27 18:23:59    阅读次数:240
类的术语和概念
?? Terms and Concepts 术语和概念   A class is a description of a set of objects that share the same attributes, operations, relationships, and semantics. Graphically, a class is rendered as a rectan...
分类:其他好文   时间:2014-06-22 18:34:19    阅读次数:286
343条   上一页 1 ... 31 32 33 34 35 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!