如何命名提取小数部分的函数?
我正在编写一个处理十进制数的类,例如“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
integralPart()
和decimalPart()
或integers()
和decimals()
integralPart()
anddecimalPart()
orintegers()
anddecimals()
integral_part
和decimal_part
怎么样?How about
integral_part
anddecimal_part
?integer_part()
和fraction_part()
integer_part()
andfraction_part()