gpt4 book ai didi

c++ - 同样的代码在 Mac 上正确,在 Linux 上不正确

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:55:31 25 4
gpt4 key购买 nike

<分区>

我遇到了一个让我陷入困境的问题(没有双关语意)。我试图说明重载运算符如何大大增强代码的可读性。为此,我编写了一个名为“cow”(无特殊含义)的简单类。当我在 Mac 上编译代码时,它编译干净并按预期执行。

在 Linux 机器 (Ubuntu) 上编译的完全相同的代码也可以干净地编译,但执行结果不正确。

在某个地方,我一定遗漏了一些明显的东西,但我没有看到。

代码如下:

#include <iostream>
#include <sstream>
using namespace std;

class cow {
public:
cow();
cow(int i);
int add(int a);
int add(string str);
int get() const;
private:
int i;
};

cow::cow() {
i = 0;
}

cow::cow(int j) {
i = j;
}

int cow::add(string str) {
stringstream s;
int num;
s << str;
s >> num;

return i += num;
}

int cow::add(int a) {
return i += a;
}

int cow::get() const {
return i;
}

int main() {
cow i(15);
cout << i.get() << " : " << i.add(15) << " : " << i.add("-15.0");
return 0;
}

编译 (g++ -Wall -o cow cow.cpp) 没有产生任何警告和错误,并创建了一个可执行文件。

在 Linux 机器上执行该程序会产生:

$ ./cow
15 : 15 : 0

在 Mac 上执行该程序会产生:

$ ./cow
15 : 30 : 15

Mac 上的 C++ 编译器是:

$ g++ --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 9.0.0 (clang-900.0.38)
Target: x86_64-apple-darwin16.7.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin

Linux 机器上的 C++ 编译器是:

$ g++ --version
g++ (Ubuntu 5.4.0-6ubuntu1~16.04.5) 5.4.0 20160609
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

感谢任何关于导致此行为的建议,以及在 Linux 机器上修复它的方法!

谢谢,

基斯

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com