10
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

[Rust] isize、usizeとは

Last updated at Posted at 2020-06-19

参考

実践Rustプログラミング入門

結論

あなたのパソコンのCPUアーキテクチャに合ったビット分のサイズを取ってくれる整数型です。

例)

32bitのPC

isize = i32
usize = u32

64bitのPC

isize = i64
usize = u64

10
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?