gpt4 book ai didi

java - Int 中的并置数

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

我是 Java 初学者。我有一个简单的问题:

int EPSGcode = 0;
int coordinateReferenceSystem = 326;
int fuseauUTM_l = 30;

我想在 ESPGcode 中并置“coordinateReferenceSystem”和“fuseauUTM_l”。

我得到 EPSGcode = 356,但我想要 EPSGcode = 32630...简单的问题,有什么想法吗?

最佳答案

将两个数字连接为字符串并将该字符串解析回 int。

EPSGCode  = Integer.parseInt(""+coordinateReferenceSystem+fuseauUTM_1);

关于java - Int 中的并置数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31027573/

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