-
Rust 1.63에서 생기는 멋진 기능들코딩Coding/Rust☑︎Release☀︎Notes_New◎Version 2022. 6. 26. 23:22728x90
https://twitter.com/m_ou_se/status/1538234055329718273?s=20&t=9H-wQu03uLWMGVLa7x-vEA
https://doc.rust-lang.org/nightly/std/thread/fn.scope.html
Mutex가 화려해 진다.
역시 병렬 실행이 강력해지는구나
빠른 시대에 대처하는 러스트 ❤️ 사랑 스럽다.
Rust 1.63 에서 되는 기능
rust play에서 미리 경험해 볼 수 있다.
https://play.rust-lang.org/아님 내 컴퓨터에 rustup nightly 로 설치 후 해 보세용^^;
rustup default nightly
let mut a = vec![1,2,3]; let mut x = 0; std::thread::scope(|s| { s.spawn(|| { println!("hello from the first scoped thread"); dbg!(&a); }); s.spawn(|| { println!("hello from the second scoped thread"); x += a[0] + a[2]; }); println!("hello from the main thread"); }); a.push(4); assert_eq!(x. a.len());
프로그래밍 언어 러스트를 배웁시다! 175 Easy Rust in Korean: Statics in Rust 1.63
반응형'코딩Coding > Rust☑︎Release☀︎Notes_New◎Version' 카테고리의 다른 글
Announcing Rust 1.62.0__❤️How does the new Mutex implementation compare to parking_lot? (0) 2022.07.01 Rust 1.61.0 ❤️__<[T]>::as_mut_ptr_range (0) 2022.06.29 Rust 2021 edition❤️에서는 Rust 2018 edition에서 써 온 extern crate란 문법을 쓰지 않아요❤️ (0) 2022.06.27 awesome Rust ❤️- 러스트 최신 정보 얻기 (0) 2022.06.26 Rust 1.63: Scoped Threads (0) 2022.06.19 Rust 1.61.0 -LGR (0) 2022.06.02 rust 1.61.0 Realeases릴리즈노트 (0) 2022.05.25 rust)_cargo에 toml입력해 줄때 정확한 버젼을 넣어야 하는 이유..그냥 최신 버젼으로 잘 넣어주자 (0) 2022.05.01