-
Rust연습_Booleans-bool 형식코딩Coding/Rust연습 2021. 5. 8. 21:18728x90
부울
Rust의 부울은 bool 형식으로 표현되고 true 또는 false의 두 값 중 하나일 수 있습니다. if 및 else 식과 같은 조건에서 광범위하게 사용됩니다. 비교 검사의 결과로 제공됩니다.
Booleans
Booleans in Rust are represented by the type bool and have two possible values: true or false. Boolean values are used widely in conditionals like if and else expressions. A boolean value is often returned by a comparison check.
fn main() { let is_bigger = 1 > 4; println!("{}", is_bigger); // prints "false" }
결과
docs.microsoft.com/ko-kr/learn/modules/rust-understand-common-concepts/3-data-types
반응형'코딩Coding > Rust연습' 카테고리의 다른 글
Rust연습_피보나치 수열 출력하기 (0) 2021.05.13 Rust연습_Create a Calculator App러스트로 계산기 만들기-Engineer man (0) 2021.05.11 Rust연습 - 구조체 및 열거형을 사용하여 코드 수정(exercise-structs-enums) (0) 2021.05.11 Rust연습_추리 게임 튜토리얼 (0) 2021.05.09 Rust연습_문자 및 문자열출력Character and strings (0) 2021.05.08 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. (0) 2021.05.08 Rust연습_문자열을 숫자로 변환해야 하고 .parse() 메서드를 사용 (0) 2021.05.08 Rust연습-Shadowing (0) 2021.05.08