如何命名提取小数部分的函数?

发布于 2024-08-21 17:05:54 字数 191 浏览 5 评论 0原文

我正在编写一个处理十进制数的类,例如“123.456”。我想要一个用于提取小数点之前的数字(123)的函数,以及一个用于提取小数点之后的数字(0.456)的函数。我的问题不是如何编程,而是如何命名函数?您还有比 digits_before_point()digits_after_point() 更好的主意吗?

I am writing a class for handling decimal numbers, e.g. "123.456". I want one function for extracting the digits before the decimal point (123), and one function to extract the digits after the decimal point (0.456). My question is not how to do the programming, but how to name the functions? Do you have any better idea than digits_before_point() and digits_after_point()?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

风追烟花雨 2024-08-28 17:05:54

integralPart()decimalPart()integers()decimals()

integralPart() and decimalPart() or integers() and decimals()

遥远的绿洲 2024-08-28 17:05:54

integral_partdecimal_part 怎么样?

How about integral_part and decimal_part?

一场信仰旅途 2024-08-28 17:05:54

integer_part()fraction_part()

integer_part() and fraction_part()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文