Salesforceの切り捨てについて共有します。
Decimal[] example = new Decimal[]{5.5, 1.1, -1.1, -2.7};
Long[] expected = new Long[]{5, 1, -1, -3};
for(integer x = 0; x < example.size(); x++){
System.debug(Math.floor(example[x]));
}
結果
5
1
-2
-3
kinkun's blog
Salesforceの切り捨てについて共有します。
Decimal[] example = new Decimal[]{5.5, 1.1, -1.1, -2.7};
Long[] expected = new Long[]{5, 1, -1, -3};
for(integer x = 0; x < example.size(); x++){
System.debug(Math.floor(example[x]));
}
結果
5
1
-2
-3