-
Rust☆]Understanding ☆Ownership☆ in Rust&☆The Rules of References☆코딩Coding/Rust연습 2021. 12. 6. 01:24728x90
Ownership rules
1. Each value in Rust has a variable that's called its owner.
2. There can only be one owner at a time.
3. When the owner goes out of scope, the value will be dropped.
Ownership rules
1. Rust의 각 값에는 소유자라는 변수가 있습니다.
2. 한 번에 한 명의 소유자만 있을 수 있습니다.
3. 소유자가 범위(scope)를 벗어나면 값이 떨어집니다.(dropped)
The Rules of References
1. At any given time, you can have either one mutable reference or any number of immutable references.
2. References must always be valid.
1. 언제든지 변경 가능한 참조 하나 또는 불변 참조 개수를 지정할 수 있습니다.
2. 참조는 항상 유효해야 합니다.
https://www.youtube.com/watch?v=VFIOSWy93H0&t=31s
반응형'코딩Coding > Rust연습' 카테고리의 다른 글
RUST연습]Easy Rust 022: Vecs (0) 2021.12.12 RUST연습]변수 사이즈크기 알아보기(use std::mem::size_of;) (0) 2021.12.10 Rust연습]Shadowing (0) 2021.12.09 RUST연습]Rust Crash Course | Rustlang -44:47부터 (0) 2021.12.07 Rust연습]Control Flow_While문_3.2.1.LIFTOFF!!연습 (0) 2021.12.06 Rust연습]Common Programming Concepts in Rust (0) 2021.12.06 Rust연습) Guessing Game in Rust (0) 2021.12.04 Rust연습_Fibonacci피보나치 출력 (0) 2021.05.13