Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make fold.expresion.cpp work with negative values #268

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions exercises/2/fold.expresion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#include <iostream>
template<typename ... T>
auto average(T ... t) {
return (t + ... ) / sizeof...(t);
return static_cast<double>((t + ... )) / sizeof...(t);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

我个人建议是模仿 <cmath> 中浮点函数的额外重载,把整数类型转换为 double 而浮点类型不变。这样可以避免 long double 被转换为 double

Suggested change
return static_cast<double>((t + ... )) / sizeof...(t);
constexpr auto integer_to_double = [](auto x) {
if constexpr (std::is_integral_v<decltype(x)>)
return static_cast<double>(x);
else
return x;
};
return (integer_to_double(t) + ... ) / sizeof...(t);

}
int main() {
std::cout << average(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) << std::endl;
}
}