前缀“0”到小于'10'的int变量,如何?

发布于 2024-09-25 15:45:40 字数 138 浏览 6 评论 0原文

是否有任何简单的方法可以在 int 变量之前连接“0”。

喜欢:

int i = 2;

// produce    
i = someMethod(i);

// output:
i = 02

Is there any simple method to concatenate '0' before an int variable.

Like:

int i = 2;

// produce    
i = someMethod(i);

// output:
i = 02

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

当梦初醒 2024-10-02 15:45:40

如果您的意思是“连接”,那么您可以如下定义 someMethod():

string someMethod(int i){
  return string.Format("{0:d2}", i);
}

字符串格式中的“2”定义输出中的字符数。

If you mean "concatenate", then you can define someMethod() as follows:

string someMethod(int i){
  return string.Format("{0:d2}", i);
}

The "2" in the string format defines the number of characters in the output.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文