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

Conversation

Delta456
Copy link
Contributor

@Delta456 Delta456 commented Jul 16, 2023

resolve #267

Description

Please describe the motivation of this pull request, and what problem was solved in this PR.

Change List

Reference

I added a static_cast<double> to make it work with negative values.


说明

此处详细说明 PR 的动机是什么、解决了什么样的问题。

变化箱单

  • 修复了 XXX 的 typo 错误
  • 增加了 XXX 相关的说明
  • 解决了关于 XXX 的描述性错误

参考文献

如果有请注明

@Baiyi27
Copy link

Baiyi27 commented Nov 11, 2023

Do not use 'auto' for the return of template functions, but use 'double' instead

@@ -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);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Chapter 2 exercise answer bug
3 participants