-
Rust연습_ The default type is f64. On modern CPUs, the f64 type is roughly the same speed as the f32 type, but it has more precision.코딩Coding/Rust연습 2021. 5. 8. 19:43728x90
isize 및 usize 형식은 프로그램을 실행하는 컴퓨터의 종류에 따라 달라집니다. 64비트 아키텍처에 있으면 64비트, 32비트 아키텍처에 있으면 32비트입니다. 지정하지 않을 때마다 정수에 할당된 기본 형식이 지정됩니다.
Rust의 부동 소수점 형식은 각각 32비트 및 64비트 크기의 f32 및 f64입니다.
최신 CPU에서는 속도가 대략 f32와 같지만 전체 자릿수는 더 클 수 있으므로 기본 형식은 f64입니다.
The isize and usize types depend on the kind of computer your program is running on. The 64-bit type is used on a 64-bit architecture, and the 32-bit type on a 32-bit architecture. If you don't specify the type for an integer, and the system can't infer the type, it assigns the i32 type (a 32-bit signed integer) by default.
Rust's floating-point types are f32 and f64, which are 32 bits and 64 bits in size, respectively.
The default type is f64. On modern CPUs, the f64 type is roughly the same speed as the f32 type, but it has more precision.
fn main() { let x = 2.0; // f64, default type let y: f32 = 3.0; // f32, via type annotation println!("{} + {} = {}", x, y, x + y); }
한글
docs.microsoft.com/ko-kr/learn/modules/rust-understand-common-concepts/3-data-types
영문
docs.microsoft.com/en-us/learn/modules/rust-understand-common-concepts/3-data-types
반응형'코딩Coding > Rust연습' 카테고리의 다른 글
Rust연습 - 구조체 및 열거형을 사용하여 코드 수정(exercise-structs-enums) (0) 2021.05.11 Rust연습_추리 게임 튜토리얼 (0) 2021.05.09 Rust연습_Booleans-bool 형식 (0) 2021.05.08 Rust연습_문자 및 문자열출력Character and strings (0) 2021.05.08 Rust연습_문자열을 숫자로 변환해야 하고 .parse() 메서드를 사용 (0) 2021.05.08 Rust연습-Shadowing (0) 2021.05.08 Rust연습-Mutability_ In Rust, variable bindings are immutable by default. (0) 2021.05.08 Rust연습_데이터 형식 알아보기(u32, i32..) (0) 2021.05.08