我当前正在创建一个软件应用程序,我想知道声明变量的速度是否有所不同。我目前正在使用这两种不同的方法。
这是我在声明变量时使用的第一种方法:
int productID, itemQuantity, cashAmount;
这是我在声明变量时使用的第二种方法:
int productID; int itemQuantity; int cashAmount;
我想知道在声明变量(第一个或第二个)时使用的最佳方法是什么。
慕勒3428872
相关分类