Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Rustで初期化されていない固定サイズのベクトルを作成/割り当てるにはどうすればよいですか?これが私がJavaでそれをする方法です:
int[] a = new int[128];
これはうまくいきました:
let a = [0, .. 128];
( Rust IRC チャンネル経由)