-
Rust연습_문자 및 문자열출력Character and strings코딩Coding/Rust연습 2021. 5. 8. 21:15728x90
문자 및 문자열
Rust에는 두 개의 문자열 형식과 하나의 문자 형식이 있습니다. 모든 항목은 유효한 UTF-8 표현입니다.
char 형식은 가장 기본적인 형식이며 작은따옴표로 지정합니다.
Character and strings
Rust has two string types and one character type. All of them are valid UTF-8 representations.
The char type is the most primitive type among them and is specified with single quotation marks:
fn main() { let c = 'z'; let z = 'ℤ'; let heart_eyed_cat = '😻'; println!("{} , {} , {}", c, z, heart_eyed_cat); }
결과
한글
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연습_Create a Calculator App러스트로 계산기 만들기-Engineer man (0) 2021.05.11 Rust연습 - 구조체 및 열거형을 사용하여 코드 수정(exercise-structs-enums) (0) 2021.05.11 Rust연습_추리 게임 튜토리얼 (0) 2021.05.09 Rust연습_Booleans-bool 형식 (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 Rust연습-Mutability_ In Rust, variable bindings are immutable by default. (0) 2021.05.08