Git 是一种常用的分布式源代码库。它是由 Linux 创作者 Linus Torvalds 创建的,旨在管理 Linux 内核源代码。GitHub 等整体服务都是基于它创建的。甚至 IBM 的DevOps Services和 IBM Rational Team Concert? 源代码库也使用它。...
分类:
其他好文 时间:
2015-09-20 01:40:58
阅读次数:
151
1. 条款24举出一个Rational的例子,来说明为什么只有non-member函数才有能力"在所有实参身上实施隐式类型转换".Rational的定义如下:class Rational{public: Rational(int numerator=0,int denominator=1); ...
分类:
编程语言 时间:
2015-09-12 06:17:18
阅读次数:
210
For two rational numbers, your task is to implement the basic arithmetics, that is, to calculate their sum, difference, product and quotient.Input Spe...
分类:
其他好文 时间:
2015-09-08 12:32:02
阅读次数:
154
#?-.-?coding:utf-8?-.-
"""
????有理数:?rational?number
"""
s1?=?"整数可以看作分母为1的分数"
s2?=?5??????????#?分子为数字5
s3?=?1??????????#?分母为数字1
s4?=?...
分类:
其他好文 时间:
2015-09-07 15:42:23
阅读次数:
132
1088. Rational Arithmetic (20)时间限制200 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueFor two rational numbers, your task is to implement the basic ...
分类:
其他好文 时间:
2015-09-06 15:59:08
阅读次数:
152
Item 21: Don't try to return a reference when you must return an object
Item 20中提到,多数情况下传引用比传值更好。追求这一点是好的,但千万别返回空的引用或指针。 一个典型的场景如下:
class Rational{
int n, d;
public:
Raitonal(int numerator...
分类:
编程语言 时间:
2015-09-06 09:52:30
阅读次数:
236
1081. Rational Sum (20)时间限制400 ms内存限制65536 kB代码长度限制16000 B判题程序Standard作者CHEN, YueGiven N rational numbers in the form "numerator/denominator", you are...
分类:
其他好文 时间:
2015-09-05 19:08:49
阅读次数:
137
clearcase 中一些概念和操作 视图常用命令ClearCase 安装和使用的一些FAQ参考 ClearCase具体的说是做配置管理的工具,只是SCM管理工具其中的一种。是RATIONAL公司开发的配置管理工具,类似于VSS,CVS的作用,但是功能比VSS,CVS强大的多,而且可以与WINDOW...
分类:
其他好文 时间:
2015-09-04 07:25:30
阅读次数:
227
1. 通常,将只接受拷贝构造函数声明为explict是一个不错的主意,因为这可以避免自动的隐式类型转换所带来的错误,但有些情况下,使类支持隐式类型转换是可行的,例如自定义的数值类型:class Rational{public: Rational(int numerator=0,int deno...
分类:
编程语言 时间:
2015-08-30 19:12:46
阅读次数:
164
1088. Rational Arithmetic (20)For two rational numbers, your task is to implement the basic arithmetics, that is, to calculate their sum, difference, ...
分类:
其他好文 时间:
2015-08-17 21:38:08
阅读次数:
95