gpt4 book ai didi

Java相当于Oracle的TRUNC函数?

转载 作者:行者123 更新时间:2023-12-01 09:37:24 28 4
gpt4 key购买 nike

在我的 PL-SQL 工作中,我经常使用 TRUNC 函数来检查数字 ID 中的较高位置值。例如:

if trunc(idValue,-3)=254000 then...

Java 中是否有类似的方法可用于 int/Integer 变量?

最佳答案

您可以在这里利用整数除法:

public int trunc(int value, int places) {
// places should be positive, not negative
int divisor = Math.pow(10, places);
int tempVal = value / divisor;
int finalVal = tempVal * divisor;
return finalVal;
}

(代码中的某处)

if (trunc(idValue,3)==254000)

关于Java相当于Oracle的TRUNC函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38750871/

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