获取整数的二进制表示形式的最简单方法是什么?

发布于 2024-09-16 07:04:35 字数 212 浏览 6 评论 0原文

其实我并不是问自己如何实现这个功能。我知道这不会很复杂。我只是不想重新发明轮子,所以我想知道 BCL 中是否存在此功能。看起来它肯定在某个地方......

输入/所需输出示例:

Input       Output
1           1
2           10
3           11
4           100
10          1010

Actually, I'm not asking how to implement this functionality myself. I know it wouldn't be very complicated. I just don't want to reinvent the wheel, so I was wondering if this functionality exists somewhere in the BCL. It seems like surely it's there somewhere...

Example input/desired output:

Input       Output
1           1
2           10
3           11
4           100
10          1010

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

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

发布评论

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

评论(2

惜醉颜 2024-09-23 07:04:35

将 toBase 设置为 2 的 System.Convert.ToString(int value, int toBase) 怎么样?

How about System.Convert.ToString(int value, int toBase) with toBase set to 2?

当爱已成负担 2024-09-23 07:04:35

尝试 Convert.ToString,如下所示:

Console.WriteLine(Convert.ToString(1, 2));
Console.WriteLine(Convert.ToString(2, 2));
Console.WriteLine(Convert.ToString(3, 2));
Console.WriteLine(Convert.ToString(4, 2));
Console.WriteLine(Convert.ToString(10, 2));

第二个参数是用于转换数字的基数(在本例中为基数 2)。

Try Convert.ToString, like this:

Console.WriteLine(Convert.ToString(1, 2));
Console.WriteLine(Convert.ToString(2, 2));
Console.WriteLine(Convert.ToString(3, 2));
Console.WriteLine(Convert.ToString(4, 2));
Console.WriteLine(Convert.ToString(10, 2));

The second parameter is the base to use to convert the number (in this case, base 2).

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