Why Rust?

0.00 

Trustworthy, Concurrent Systems Programming

Категория: Метки: , ,

Описание

While systems programming languages have greatly evolved since the introduction of C more than 40 years ago, our capacity for dumb mistakes with enormous consequences has remained unchanged, with vivid examples regularly in the news. This O’Reilly report examines Rust, a new systems programming language that combines safety and security with performance on a par with C and C++.

Author Jim Blandy from Mozilla explains how Rust achieves this combination via a sophisticated and flexible type system, working together with a novel «borrow checker.» Rust promises:

  • No null pointer dereferences. Programs won’t crash because you forgot to check whether a pointer was null.
  • No dangling pointers, no leaks. Every value will live as long as it must, and no longer.
  • No buffer overruns. Your program will never access elements beyond the end or before the start of an array.

The first two come at no run-time cost: they’re checked entirely at compile time. These memory safety guarantees also eliminate data races from multi-threaded programming, making concurrency much easier to use.

With this report, you’ll learn how to put Rust’s safety, performance, and trustworthy concurrency to use, and you’ll understand how the type system and borrow checker affect the way you write your code.

Бренд

O'Reilly Media, Inc.

O'Reilly Media spreads the knowledge of innovators through its books, online services, magazines, research, and conferences. Since 1978, O'Reilly has been a chronicler and catalyst of leading-edge development, homing in on the technology trends that really matter and galvanizing their adoption by amplifying "faint signals" from the alpha geeks who are creating the future. An active participant in the technology community, the company has a long history of advocacy, meme-making, and evangelism.

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *