- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在为有理数实现一个类,这当然涉及重写“==”和“!=”等常见运算符。我很确定我遗漏了一个愚蠢的错误,不要犹豫,索要我没有提供的任何文件。谢谢!
理性.hpp:
#ifndef RATIONAL_HPP
#define RATIONAL_HPP
#include "test.hpp"
#include <cstdlib>
#include <iosfwd>
#include <iostream>
#include <assert.h>
// Mathematical helper functions.
//
// NOTE: These are defined in rational.cpp.
int gcd(int, int);
int lcm(int, int);
// Represents a rational number. The rational numbers are the set of
// numbers that can be represented as the quotient of two integers.
struct Rational
{
// TODO: Define the following:
// 1. A default constructor
int n;
int d;
Rational()
:n(0), d(1) {}
// 2. A constructor that takes an integer value
Rational(int num)
:n(num), d(1){}
// 3. A constructor that takes a pair of values
Rational(int numer, int denom)
:n(numer), d(denom) {
assert( d != 0);
int gcdnum;
if ((numer % denom) != 0){
//do nothing
}else{
gcdnum = gcd(numer, denom);
numer /= gcdnum;
denom /= gcdnum;
Rational(numer, denom);
}
}
// Returns the numerator.
int num() const {
return n;
}
// Returns the denominator
int den() const {
return d;
}
};
bool operator==(Rational a, Rational b){
return (a.n == b.n && a.d == b.d);
}
bool operator!=(Rational a, Rational b){
return (a.n != b.n && a.d != b.d);
}
bool operator < (Rational a, Rational b){
int lcdNum = lcm(a.d, b.d);
int newAN, newBN; //allows for comparisons without altering actuial value
newAN = a.n * lcdNum;
newBN = b.n * lcdNum;
return newAN < newBN;
}
bool operator > (Rational a, Rational b){
int lcdNum = lcm(a.d, b.d);
int newAN, newBN; //allows for comparisons without altering actuial value
newAN = a.n * lcdNum;
newBN = b.n * lcdNum;
return newAN > newBN;
}
bool operator <= (Rational a, Rational b){
int lcdNum = lcm(a.d, b.d);
int newAN, newBN; //allows for comparisons without altering actuial value
newAN = a.n * lcdNum;
newBN = b.n * lcdNum;
return newAN <= newBN;
}
bool operator >= (Rational a, Rational b){
int lcdNum = lcm(a.d, b.d);
int newAN, newBN; //allows for comparisons without altering actuial value
newAN = a.n * lcdNum;
newBN = b.n * lcdNum;
return newAN >= newBN;
}
// 3. The standard arithmetic operators
// - r1 + r2
// - r1 - r2
// - r1 * r2
// - r1 / r2
// - r1 / r2
Rational operator + (Rational a, Rational b){
int lcdNum = lcm(a.d, b.d);
int newAN, newBN; //allows for comparisons without altering actuial value
newAN = a.n * lcdNum;
newBN = b.n * lcdNum;
Rational c((newAN + newBN), (a.d * lcdNum));
return c;
}
Rational operator - (Rational a, Rational b){
int lcdNum = lcm(a.d, b.d);
int newAN, newBN; //allows for comparisons without altering actuial value
newAN = a.n * lcdNum;
newBN = b.n * lcdNum;
Rational c((newAN + newBN), (a.d * lcdNum));
return c;
}
Rational operator * (Rational a, Rational b){
Rational c((a.n * b.n), (a.d * b.d));
return c;
}
Rational operator / (Rational a, Rational b){
Rational c((a.n * b.d), (a.d * b.n)); //multiplies by the reciprocal
return c;
}
std::ostream& operator<<(std::ostream&, Rational);
std::istream& operator>>(std::istream&, Rational&);
#endif
理性.cpp:
//
// rational.hpp: Definition of rational class and its interace.
#include "rational.hpp"
#include <iostream>
// -------------------------------------------------------------------------- //
// Helper functions
// Compute the GCD of two integer values using Euclid's algorithm.
int
gcd(int a, int b)
{
while (b != 0) {
int t = b;
b = a % b;
a = t;
}
return a;
}
// Compute the LCM of two integer values.
int
lcm(int a, int b)
{
return (std::abs(a) / gcd(a, b)) * std::abs(b);
}
// -------------------------------------------------------------------------- //
// Rational implementation
// TODO: Make this print integers when the denominator is 1.
std::ostream&
operator<<(std::ostream& os, Rational r)
{
if(r.den() == 1){
return os << r.num();
}else{
return os << r.num() << '/' << r.den();
}
}
// TODO: Make this read integer values if no '/' is given as a separator.
// You may assume that there is no space between the numerator and the
// slash. Hint, find and read the reference documentation for istream::peek().
std::istream&
operator>>(std::istream& is, Rational& r)
{
int p, q;
char c;
is >> p;
c = is.peek();
if (c == '/'){
is >> c >> q;
if (!is)
return is;
// Require that the divider to be a '/'.
if (c != '/') {
is.setstate(std::ios::failbit);
return is;
}
// Make sure that we didn't read p/0.
if (q == 0) {
is.setstate(std::ios::failbit);
return is;
}
r = Rational(p, q);
return is;
}else{
is.setstate(std::ios::failbit);
}
}
rc.cpp:
// main.cpp: rational number test suite
#include "rational.hpp"
#include <iostream>
#include <iomanip>
#include <unistd.h>
int
main()
{
// Determine if input is coming from a terminal.
bool term = isatty(0);
// This will continue reading until it reaches the end-of-input.
// If you are using this interactivly, type crtl-d to send the
// end of input character to the terminal.
while (std::cin) {
Rational r1;
Rational r2;
std::string op;
if (term)
std::cout << "> ";
std::cin >> r1 >> op >> r2;
if (!std::cin)
break;
// FIXME: Add all of the other overlaoded operators by adding
// cases for each of them.
if (op == "==")
std::cout << std::boolalpha << (r1 == r2) << '\n';
else if (op == "!=")
std::cout << std::boolalpha << (r1 != r2) << '\n';
else if (op == "<")
std::cout << std::boolalpha << (r1 < r2) << '\n';
else if (op == ">")
std::cout << std::boolalpha << (r1 > r2) << '\n';
else if (op == "<=")
std::cout << std::boolalpha << (r1 <= r2) << '\n';
else if (op == ">=")
std::cout << std::boolalpha << (r1 >= r2) << '\n';
else if (op == "+")
std::cout << (r1 + r2) << '\n';
else if (op == "-")
std::cout << (r1 - r2) << '\n';
else if (op == "*")
std::cout << (r1 * r2) << '\n';
else if (op == "/")
std::cout << (r1 / r2) << '\n';
else
std::cerr << "invalid operator: " << op << '\n';
}
// If we got to the end of the file without fatal errors,
// return success.
if (std::cin.eof())
return 0;
// Otherwise, diagnose errors in input and exit with an error
// code.
if (std::cin.fail()) {
std::cerr << "input error\n";
return 1;
}
return 0;
}
最佳答案
#include
rational.hpp
的每个翻译单元都将获得比较运算符函数的定义,这肯定会导致链接时的重复定义.
尝试在它们前面添加一个“内联”关键字。
关于c++:覆盖运算符时的多个定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35591871/
我知道 C++ 中的 overriding 是什么。但是,是否存在覆盖?如果有,是什么意思? 谢谢。 最佳答案 在 C++ 术语中,您有 覆盖(与类层次结构中的虚拟方法相关)和 重载(与具有相同名称但
我想捕获位于另一个元素下的元素的鼠标事件。 这是我所拥有的示例:http://jsfiddle.net/KVLkp/13/ 现在我想要的是当鼠标悬停在红色方 block 上时蓝色方 block 有黄色
以下报道 here我尝试创建一个带有重叠散点图的箱线图。 但是当我运行时: In [27]: table1.t_in[table1.duration==6] Out[27]: counter 7
有一个 JS Fiddle here , 你能在不克隆到新对象的情况下替换 e.target 吗? 下面重复了那个 fiddle 的听众; one.addEventListener('click',
首先要解决重复的可能性: 我不是询问 Override 是什么、它的含义或 @Override 在 java 文档注释之外。那是我不是问 /**Some JavaDoc Comment*/ @over
我想要高于定义的数组。它存储点及其坐标。 public static List simpleGraph(List nodes) { int numEdges = nodes.size() *
我在 http://olisan.dk/blog/ 有一个博客- 如您所见,有一个 28 像素的高间隙(边距顶部)...在 style.css 中: margin-top: 0; 也被设置为 marg
Vulkan 句柄是指向 struct 的不透明指针,或者只是无符号的 64 位整数,具体取决于 VK_USE_64_BIT_PTR_DEFINES 的值: #if (VK_USE_64_BI
我正在尝试提供一个行为类似于 DataGridTextColumn 的 DataGrid 列,但在编辑模式下有一个附加按钮。我查看了 DataGridTemplateColumn,但似乎更容易将 Da
使用 Django 1.10 我想在用户名中允许\字符,因为我在使用“django.contrib.auth.middleware.RemoteUserMiddleware”的 Windows 环境中
我正在尝试使用 ffmpeg 将 Logo 放入 rtmp 流中。我的 ffmpeg 版本是 ffmpeg version 4.3.1目前在我的复杂过滤器中,我有: ffmpeg -re -i 'v
是否有用于Firebase 3存储的方法/规则来禁用文件更新或覆盖? 我为数据库找到了data.exists(),但没有为存储找到解决方案。 最佳答案 TL; DR:在Storage Security
我有两个 Docker Compose 文件,docker-compose.yml看起来像这样 version: '2' services: mongo: image: mongo:3.2
我需要覆盖 JPA 中的集合表吗?也许有人有想法 public class nationality{ @Embedded @AttributeOverrides({
嗨,我正在使用 WIX 和下面的代码将文件安装到目录中。 我的应用程序的工作方式是用户可以在该目录中复制他们自己的文件,覆盖他们喜欢的内容
我正在尝试为 Lua 中的字符串实现我自己的长度方法。 我已成功覆盖字符串的 len() 方法,但我不知道如何为 # 运算符执行此操作。 orig_len = string.len function
在Scala 2.10.4中,给出以下类: scala> class Foo { | val x = true | val f = if (x) 100 else 200
我想做上面的事情。 我过去覆盖了许多文件...... block ,模型,助手......但这个让我望而却步。 谁能看到我在这里做错了什么: (我编辑了这段代码......现在包括一些建议......
根据javadoc An instance method in a subclass with the same signature (name, plus the number and the ty
我有一段代码,只要有可用的新数据作为 InputStream 就会生成新数据。每次都覆盖同一个文件。有时文件在写入之前变为 0 kb。 Web 服务会定期读取这些文件。我需要避免文件为 0 字节的情况
我是一名优秀的程序员,十分优秀!