Int 中的并列数

Juxtapose number in Int

我是 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);