Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rust Ownership & Borrowing - Ưu nhược điểm khi sử dụng clone()borrowing #9

Open
CocDap opened this issue Feb 22, 2024 · 1 comment

Comments

@CocDap
Copy link
Collaborator

CocDap commented Feb 22, 2024

No description provided.

@zrus
Copy link

zrus commented Feb 24, 2024

.clone()

  • Ưu: làm việc linh động hơn, không cần quan tâm đến ownership của đối tượng. Có thể pass by ref hoặc pass by value ở mọi nơi.
  • Nhược: tạo ra một instance hoàn toàn mới có giá trị tương tự, lúc này thay đổi giá trị trên instance mới sẽ không được update trên instance cũ. Việc lạm dụng clone sẽ gây khó khăn trong việc quản lý trạng thái của đối tượng và làm tăng dung lượng bộ nhớ của chương trình.

borrowing

  • Ưu: tiết kiệm bộ nhớ chương trình do cùng tham chiếu đến giá trị của một đối tượng duy nhất.
  • Nhược: đòi hỏi am hiểu về lifetime của đối tượng.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants