声明变量和数据类型有什么区别

我当前正在创建一个软件应用程序,我想知道声明变量的速度是否有所不同。我目前正在使用这两种不同的方法。

这是我在声明变量时使用的第一种方法:

int productID, itemQuantity, cashAmount;

这是我在声明变量时使用的第二种方法:

int productID;
int itemQuantity;
int cashAmount;

我想知道在声明变量(第一个或第二个)时使用的最佳方法是什么。


慕尼黑的夜晚无繁华
浏览 166回答 1
1回答

慕勒3428872

不,没有区别。int productID, itemQuantity, cashAmount;只是程序员的简写int productID;int itemQuantity;int cashAmount;并编译为完全相同的结果(IL代码):.locals init ([0] int32 productID,         [1] int32 itemQuantity,         [2] int32 cashAmount)(根据是否有更多局部变量,索引会有所不同)
打开App,查看更多内容
随时随地看视频慕课网APP