为什么我们应该切换到Rust

What is RUST? 什么是Rust?

Rust is a programming language focused on safety, particularly safe concurrency, supporting functional and imperative-procedural paradigms. Rust is syntactically similar to C++, but it provides memory safety without using garbage collection.
Rust是一种专注于安全性的编程语言,特别是安全并发,支持函数式和强制过程式范式。Rust在语法上类似于C++,但它提供了内存安全,而不使用垃圾收集。

It achieves this through a system of ownership with a set of rules that the compiler checks at compile time. Though it does not prevent all possible bugs, it guarantees memory safety by ensuring that certain kinds of bugs, like buffer overflows or access to uninitialized memory, are caught during compilation
它通过一个所有权系统和一组编译器在编译时检查的规则来实现这一点。虽然它不能防止所有可能的错误,但它通过确保在编译期间捕获某些类型的错误(如缓冲区溢出或对未初始化内存的访问)来保证内存安全

Rust is safe Rust安全

When we talk about program safety, there are three distinct aspects to consider:
当我们谈论程序安全时,有三个不同的方面需要考虑:

type safetymemory safety, and thread safety.
类型安全、内存安全和线程安全。

Regarding type safety, Rust is a statically typed language. Type checking, which verifies and enforces type constraints, happens at compile time, so the types of variables have to be determined at compile time.
关于类型安全,Rust是一种静态类型语言。类型检查,即验证和强制类型约束,发生在编译时,因此必须在编译时确定变量的类型。

If you do not specify a type for a variable, the compiler will try to infer it. If it is unable to do so, or if it sees conflicts, it will let you know and prevent you from proceeding.
如果你没有为变量指定类型,编译器会尝试推断它。如果它不能这样做,或者如果它看到冲突,它会让你知道并阻止你继续。

In this context, Rust is similar to Java, Scala, C, and C++. Type safety in Rust is very strongly enforced by the compiler, but with helpful error messages. This helps to eliminate an entire class of run-time errors.
在这种情况下,Rust类似于Java,Scala,C和C++。Rust中的类型安全是由编译器强制执行的,但有有用的错误消息。这有助于消除整个一类运行时错误。

Memory safety is, arguably, one of the most unique aspects of the Rust programming language. To do justice to this topic, let’s look at this in detail.
可以说,内存安全是Rust编程语言最独特的方面之一。为了公正地对待这个主题,让我们详细地看看这个。

Mainstream programming languages can be classified into two groups based on how they provide memory management.
主流编程语言可以根据它们提供内存管理的方式分为两组。

The first group 第一组

Comprises languages with manual memory management, such as C and C++.
包括具有手动内存管理的语言,如C和C++。

The second group 第二组

Includes languages with a garbage collector, such as Java, C#, Python, Ruby, and Go.
包括具有垃圾收集器的语言,例如Java、C#、Python、Ruby和Go。

Rust is the first popular language to propose an alternative — automatic memory management and memory safety without garbage collection.
Rust是第一个提出替代方案的流行语言-自动内存管理和内存安全,而无需垃圾收集。

As you are probably aware, it achieves this through a unique ownership model. Rust enables developers to control the memory layout of their data structures and makes ownership explicit. Rust’s ownership model of resource management is modeled around RAII (Resource Acquisition is Initialization) — a C++ programming concept — and smart pointers that enable safe memory usage.
正如你可能知道的,它通过一个独特的所有权模式来实现这一点。Rust使开发人员能够控制其数据结构的内存布局,并使所有权显式。Rust的资源管理的所有权模型是围绕RAII(资源获取是一个C++编程概念)和智能指针来建模的,智能指针支持安全的内存使用。

Rust can also grant temporary access to a value, another variable, or a function. This is called borrowing.
Rust还可以授予对值、另一个变量或函数的临时访问权限。这就叫做借贷。

The Rust compiler (specifically, the borrow checker) ensures that a reference to a value does not outlive the value being borrowed. To borrow a value, the &operator is used (called a reference).
Rust编译器(特别是借用检查器)确保对值的引用不会超过被借用的值。要借用一个值,需要使用&运算符(称为引用)。

References are of two types:
引用有两种类型:

immutable references, &T,
不可变引用,&T,

These references allow sharing but not mutation.
这些引用允许共享,但不允许改变。

mutable references, &mut T
可变引用(&mut T)

These allow mutation but not sharing.
它们允许突变,但不允许共享。

Rust ensures that whenever there is a mutable borrow of an object, there are no other borrows of that object (either mutable or immutable). All this is enforced at compile time, leading to the elimination of entire classes of errors involving invalid memory access.
Rust确保只要有一个对象的可变借用,就没有该对象的其他借用(无论是可变的还是不可变的)。所有这些都是在编译时强制执行的,从而消除了涉及无效内存访问的整个错误类。

To summarize, We can program in Rust without fear of invalid memory access and without a garbage collector. Rust provides compile-time guarantees to prevent the following categories of memory-safety errors:
总之,我们可以在Rust中编程,而不必担心无效的内存访问,也无需垃圾收集器。Rust提供编译时保证,以防止以下类别的内存安全错误:

  • Null pointer dereferences, where a program crashes because a pointer being dereferenced is null.
    指针解引用,在这种情况下,由于被解引用的指针为空而导致程序崩溃。
  • Segmentation faults, where programs attempt to access a restricted area of memory.
    分段错误,程序试图访问内存的受限区域。
  • Dangling pointers, where a value associated with a pointer no longer exists.
    悬挂指针,其中与指针相关联的值不再存在。
  • Buffer overflows, due to programs accessing elements before the start or beyond the end of an array. Rust iterators don’t run out of bounds.
    缓冲区溢出,由于程序访问数组开始之前或结束之后的元素。Rust迭代器不会越界。
  • All variables in Rust are immutable by default, and explicit declaration is required before mutating any variable. This forces developers to think through how and where data gets modified and what the lifetime of each object is.
    Rust中的所有变量在默认情况下都是不可变的,在改变任何变量之前都需要显式声明。这迫使开发人员考虑如何以及在何处修改数据,以及每个对象的生命周期是什么。
  • Rust’s ownership model handles not just memory management but the management of variables owning other resources, such as network sockets, database and file handles, and device descriptors.
    Rust的所有权模型不仅处理内存管理,还管理拥有其他资源的变量,例如网络套接字,数据库和文件句柄以及设备描述符。

The lack of a garbage collector prevents nondeterministic behavior.
缺少垃圾收集器可以防止不确定性行为。

  • Match clauses (which are equivalent to Switch statements in other languages) are exhaustive, which means that the compiler forces the developer to handle every possible variant in the match statement. This prevents developers from inadvertently missing out on handling certain code flow paths that might result in unexpected run-time behavior.
    Match子句(相当于其他语言中的Switch语句)是穷举的,这意味着编译器强制开发人员处理match语句中的每一个可能的变体。这可以防止开发人员无意中错过处理某些可能导致意外运行时行为的代码流路径。
  • The presence of algebraic data types makes it easier to represent the data model in a concise and verifiable manner.
    代数数据类型的存在使得以简洁和可验证的方式表示数据模型变得更加容易。

There are many benefits of using Rust for example the type safety and low latency and concurrency however the learning curve for Rust is very steep and there is no custodian support for Rust like Golang has Google.
使用Rust有很多好处,例如类型安全,低延迟和并发性,但是Rust的学习曲线非常陡峭,并且没有像Golang那样的托管人支持Rust。

However it is still a great option to explore when writing Web applications and Rest Services.
但是,在编写Web应用程序和Rest Services时,它仍然是一个很好的选择。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/815290.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[大模型]Yi-6B-chat WebDemo 部署

Yi-6B-chat WebDemo 部署 Yi 介绍 由60亿个参数组成的高级语言模型 Yi LLM。为了促进研究,Yi 已经为研究社区开放了Yi LLM 6B/34B Base 和 Yi LLM 6B/34B Chat。 环境准备 在autodl平台中租一个3090等24G显存的显卡机器,如下图所示镜像选择PyTorch–…

leecode438 | 找到所有字符串中的异位词

题意大致是&#xff0c;给定两个字符串&#xff0c;s 和 p 其中 要在s 中找到由p的元素组成的子字符串&#xff0c;记录子字符串首地址 class Solution { public:vector<int> findAnagrams(string s, string p) {int m s.size(), n p.size();if(m < n)return {};vec…

vue-router 原理【详解】hash模式 vs H5 history 模式

hash 模式 【推荐】 路由效果 在不刷新页面的前提下&#xff0c;根据 URL 中的 hash 值&#xff0c;渲染对应的页面 http://test.com/#/login 登录页http://test.com/#/index 首页 核心API – window.onhashchange 监听 hash 的变化&#xff0c;触发视图更新 window.onhas…

谷歌关键词优化全攻略提高曝光率-华媒舍

现如今&#xff0c;互联网已成为信息获取的主要渠道&#xff0c;而搜索引擎则是人们寻找信息的首选工具之一。其中&#xff0c;谷歌作为全球最大的搜索引擎&#xff0c;其搜索结果的排名直接影响着网站的曝光率和流量。了解并掌握谷歌关键词优化的技巧&#xff0c;成为提升网站…

Vue项目打包:禁止生成sourceMap文件

Vue项目在打包过程中&#xff0c;默认会生成sourceMap文件。 sourceMap的主要作用是让打包后的文件像未压缩的代码一样&#xff0c;方便调试和定位错误。然而&#xff0c;在生产环境中我们通常不需要这些文件&#xff0c;因为它们会增加应用程序的体积。 可以在vue.config.js…

MySQL-多表查询:多表查询分类、SQL99语法实现多表查询、UNION的使用、7种SQL JOINS的实现、SQL99语法新特性、多表查询SQL练习

多表查询 1. 一个案例引发的多表连接1.1 案例说明1.2 笛卡尔积&#xff08;或交叉连接&#xff09;的理解1.3 案例分析与问题解决 2. 多表查询分类讲解分类1&#xff1a;等值连接 vs 非等值连接等值连接非等值连接 分类2&#xff1a;自连接 vs 非自连接分类3&#xff1a;内连接…

团结引擎+OpenHarmony 1配置篇

团结引擎OpenHarmony 1 配置篇 app团结鸿蒙化第一课一 DevEco Studio 下载安装二 团结引擎三 出包 app团结鸿蒙化第一课 1 团结引擎配置2 DevEco Studio 配置 一 DevEco Studio 下载安装 申请开发者套件 1 注册华为账号 签署协议 官网 2 认真填写 DevEco Studio 开发套件申请…

高清4路HDMI编码器JR-3214HD

产品简介&#xff1a; JR-3214HD四路高清HDMI编码器是专业的高清音视频编码产品&#xff0c;该产品具有支持4路高清HDMI音视频采集功能&#xff0c;4路3.5MM独立外接音频输入&#xff0c;编码输出双码流H.264格式&#xff0c;音频MP3/AAC格式。编码码率可调&#xff0c;画面质…

预约系统的使用

预约系统的使用 目录概述需求&#xff1a; 设计思路实现思路分析1.用户年规则 在 预约系统中的使用流程 参考资料和推荐阅读 Survive by day and develop by night. talk for import biz , show your perfect code,full busy&#xff0c;skip hardness,make a better result,wa…

【LeetCode热题100】【二叉树】路径总和 III

题目链接&#xff1a;437. 路径总和 III - 力扣&#xff08;LeetCode&#xff09; 要从上到下找一条路径的和最简单的方法是遍历每个节点&#xff0c;然后从每个节点往下累加看看和对不对 这样是O(n&#xff09;的时间复杂度 可以计算一条路径上的前缀和方法&#xff0c;这样…

[图像处理] MFC OnMouseMove()绘制ROI矩形时的闪烁问题

文章目录 问题对策代码完整工程 结果使用Picture控件的RedrawWindow()的效果使用Dialog的RedrawWindow()的效果使用Picture控件的RedrawWindow()&#xff0c;ROI绘制到图像外的效果 结论 问题 最近想通过业余时间&#xff0c;写一个简单的图像处理软件&#xff0c;一点点学习图…

测试计划和测试报告

1、软件测试计划简介 测试计划&#xff0c;一般是主管写&#xff0c;在需求分析之后&#xff0c;测试工作开始之间做的一些准备划工作。一般包含以下内容&#xff1a;5W1H 目的、测试范围、测试进度安排、测试人员、测试环境、测试方法工具&#xff0c;风险评估 &#xff08;w…

redis知识整理

redis知识整理 什么是缓存穿透&#xff0c;怎么解决布隆过滤器 什么是缓存击穿&#xff0c;怎么解决互斥锁和分布式锁 什么是缓存雪崩&#xff0c;怎么解决Redis作为缓存&#xff0c;mysql如何与redis进行同步呢&#xff1f;&#xff08;双写一致&#xff09;一致性要求高排他锁…

如何在 MySQL 中开启日志记录并排查操作记录

在数据库管理中&#xff0c;能够追踪和审查操作记录是至关重要的。这不仅有助于识别和分析正常的数据库活动&#xff0c;还可以在数据泄露或未经授权的更改发生时进行调查和响应。本文将介绍如何在 MySQL 中开启通用日志记录&#xff0c;并如何排查操作记录。 开启 MySQL 通用…

2024/4/14周报

文章目录 摘要Abstract文献阅读题目创新点CROSSFORMER架构跨尺度嵌入层&#xff08;CEL&#xff09;CROSSFORMER BLOCK长短距离注意&#xff08;LSDA&#xff09;动态位置偏置&#xff08;DPB&#xff09; 实验 深度学习CrossFormer背景维度分段嵌入&#xff08;DSW&#xff09…

c++ 根据ip主机号和子网掩码随机生成ip

在C中&#xff0c;可以使用以下方法根据给定的IP地址和子网掩码来随机生成IP地址。这里使用了库来生成随机数&#xff0c;以及<arpa/inet.h>库来处理IP地址。 #include <iostream> #include <random> #include <arpa/inet.h>std::string random_ip(co…

面试经典150题 删除有序数组中的重复项 II

面试经典150题 day4 题目来源我的题解方法一 双指针 题目来源 力扣每日一题&#xff1b;题序&#xff1a;80 我的题解 方法一 双指针 left和right分别指向相同元素的左右边界&#xff0c;count记录重复元素的个数&#xff0c;index记录最终数组的长度。 当元素没有重复时&am…

数据库工程师题目

【软考通】 程序中全局变量的存储空间在&#xff08;B&#xff09;分配。 A 代码区 B 静态数据区 C 栈区 D 堆区 程序运行时的用户内存空间一般划分为代码区、静态数据区、栈区和堆区&#xff0c;其中栈区和堆区也称为动态数据区。全局变量的存储空间在静态数据区。 以下…

1.0 Hadoop 教程

1.0 Hadoop 教程 分类 Hadoop 教程 Hadoop 是一个开源的分布式计算和存储框架&#xff0c;由 Apache 基金会开发和维护。 Hadoop 为庞大的计算机集群提供可靠的、可伸缩的应用层计算和存储支持&#xff0c;它允许使用简单的编程模型跨计算机群集分布式处理大型数据集&#xf…

IntelliJ IDEA 配置攻略:提高开发效率的 5 个秘诀

一、前言 A. 主要介绍内容&#xff1a; 本篇博客将着重介绍如何通过高效使用 IntelliJ IDEA&#xff0c;提高开发效率以及编写出更好的代码。主要内容包括 IntelliJ IDEA 快速配置&#xff0c;自动编写代码&#xff0c;快捷代码提示&#xff0c;快速生成代码段&#xff0c;快…