-
Rust] String::from("") vs to_string() 차이점 (to_ cost가 비싸다 ❤️ Naming Guide코딩Coding/Rust❤️Optimization❤️ 2022. 4. 26. 21:21728x90
https://stackoverflow.com/questions/61475158/how-does-stringfrom-to-string-differ-in-rust
결론은 to_string 보다는 to_owned를 사용해라 그게 더 빠르다.
레딧에 올라온 자료
https://www.reddit.com/r/rust/comments/gohlq2/what_is_the_difference_between_to_string_and/frgra8t/
to_
Cost 가 비싸다 피해야 할 메소드 인듯요
https://doc.rust-lang.org/1.0.0/style/style/naming/conversions.html
https://rust-lang.github.io/api-guidelines/naming.html
string과 str 의 차이
https://stackoverflow.com/questions/24158114/what-are-the-differences-between-rusts-string-and-str
https://users.rust-lang.org/t/to-string-vs-to-owned-for-string-literals/1441
반응형'코딩Coding > Rust❤️Optimization❤️' 카테고리의 다른 글
HashMap보다는 vec/3d array를 활용하자rule enum보다는 bool array가 더 빠름❤️Rust multi-threading code review (0) 2022.05.02 rust) cargo보다 5배 빠르다고 하는 fleet 🚀(컴파일 속도5배 빨라지는듯 ㅜㅜ) (0) 2022.04.27 Rust]ToOwned가 속도가 빠름, to_string보다 ToOwned가 짱 (0) 2022.04.27 Rust_inline개념 이해(Inlining is a trade-off between potential execution speed, compile time and code size) (0) 2022.04.26 Rust❤️Design Patterns -eBook (0) 2022.04.26 rust concurrency) Rayon (0) 2022.04.26 Rust] borrow가 있다면 일반 String보다 빠르다.Cow최고 (0) 2022.04.19 Rust]❤️All Algorithm implemented in Rust (0) 2022.04.18