rust 编程入门_面向初学者的Rust –最受欢迎的编程语言入门

rust 编程入门

Rust has been voted Stack Overflow’s most loved programming language for five years in a row. This article will tell you why Rust is awesome.

Rust已连续五年被评为Stack Overflow最受欢迎的编程语言。 本文将告诉您为什么Rust很棒。

Rust is a systems programming language that you can use to write applications with high performance. Rust is used by some of the top tech companies like Dropbox and Cloudflare to deliver speed and concurrency to their customers.

Rust是一种系统编程语言 ,可用于编写高性能的应用程序。 一些顶级高科技公司(例如Dropbox和Cloudflare)使用Rust来为其客户提供速度和并发性。

For the last five years in a row, Rust has been voted as the most loved programming language.

在过去的五年中,Rust被评选为最受欢迎的编程语言。

But chances are, you might not have worked with Rust. Or worse, you might not have heard of it before. So let's learn more about it.

但是有可能,您可能没有使用Rust。 或更糟糕的是,您可能以前从未听说过它。 因此,让我们进一步了解它。

为什么生锈? (Why Rust?)

Let’s look at why a developer would choose Rust.

让我们看看为什么开发人员会选择Rust。

Typical programming languages like Python and C++ abstract a lot of details away from developers.

诸如Python和C ++之类的典型编程语言从开发人员那里提取了许多细节。

If you are a junior developer working on a simple web application, this might not an issue. You just want to find a solution to a problem.

如果您是从事简单Web应用程序的初级开发人员,那么这可能不是问题。 您只想找到问题的解决方案。

For large scale applications that millions of users will use on a daily basis, the ‘problem-solving’ approach will not work. More users consume more system resources. And more resources mean bigger bills for your company.

对于每天将有数百万用户使用的大规模应用程序,“问题解决”方法将行不通。 更多的用户消耗更多的系统资源。 更多的资源意味着您公司的账单更大。

This is where Rust shines. Rust combines ease of programming with access to core system configurations. Rust is built with memory-safety, concurrency, and security from the ground up.

这是Rust发光的地方。 Rust将易于编程与对核心系统配置的访问结合在一起。 Rust从一开始就具有内存安全性,并发性和安全性。

Rust is a “systems programming language that focuses on speed, memory safety, and parallelism”.
Rust是一种“专注于速度,内存安全和并行性的系统编程语言”。

Rust is also considered to be a great alternative for C++. Rust offers high performance in addition to helping you eliminate common bugs caused by languages like C++.

Rust也被认为是C ++的绝佳替代品。 除帮助您消除由C ++之类的语言引起的常见错误外,Rust还提供了高性能。

Now that you know what Rust can do for you, let's look at Rust in detail.

既然您知道Rust可以为您做什么,那么让我们详细了解Rust。

起源 ( Origins)

Rust is an open-source programming language. It was first introduced to the world in 2010 by Graydon Hoare, while he was working at Mozilla. Shortly after, Mozilla began sponsoring this project and is still a core contributor to Rust.

Rust是一种开源编程语言。 Graydon Hoare在Mozilla工作时于2010年首次将其引入世界。 此后不久,Mozilla开始赞助该项目,并且仍然是Rust的核心贡献者。

Rust started gaining popularity over the years. Even Microsoft uses Rust to build secure and safety-critical software components.

多年来,Rust开始流行。 甚至Microsoft都使用Rust来构建安全且对安全性至关重要的软件组件。

核心功能 ( Core Features)

Let's look at some core features that make Rust stand out from other programming languages.

让我们看一些使Rust在其他编程语言中脱颖而出的核心功能。

性能 (Performance)

Rust was built to be high performance form the ground up. Rust offers fine-grained control of memory management and has a minimal standard library.

Rust被构建为具有高性能的基础。 Rust提供了对内存管理的细粒度控制,并且具有最小的标准库。

If you look at some of the metrics shared by Figma, they had incredible improvements in performance once they switched to Rust.

如果您看一下Figma共享的一些指标 ,当他们切换到Rust时,它们在性能上有了惊人的提高。

Rust’s low memory footprint also makes it an ideal choice for embedded systems programming. You can use Rust to write software for IoT devices like home automation hubs, smart security systems, and so on.

Rust的低内存占用空间也使其成为嵌入式系统编程的理想选择。 您可以使用Rust来为IoT设备(例如家庭自动化集线器,智能安全系统等)编写软件。

安全 (Security)

One of the major reasons Microsoft decided to root for Rust is its security.

微软决定支持Rust的主要原因之一是其安全性。

The majority of vulnerabilities in Microsoft software were due to poor memory management in C & C++. This lead to simple yet powerful exploits like the Buffer Overflow exploit that had crippled Windows for years.

Microsoft软件中的大多数漏洞是由于C&C ++中的内存管理不良所致。 这导致了简单而强大的漏洞利用 ,例如使Windows瘫痪多年的“ 缓冲区溢出”漏洞 。

So Microsoft decided to look for the best alternative to C++. And they found Rust.

因此,Microsoft决定寻找C ++的最佳替代品。 他们发现了Rust。

Using Rust eliminates an entire class of security vulnerabilities from software applications. This helps companies build applications with better performance and higher security.

使用Rust消除了软件应用程序中的一整类安全漏洞。 这有助于公司构建具有更好性能和更高安全性的应用程序。

并发 (Concurrency)

Concurrency is when two or more tasks start, run, and complete in overlapping time. Database operations are a great example to explain concurrency.

并发是指两个或多个任务在重叠时间内启动,运行和完成。 数据库操作是解释并发性的一个很好的例子。

When thousands of users are using your application at the same time to perform different actions, your database handles them concurrently. Concurrency is a key concept when it comes to scaling applications.

当成千上万的用户同时使用您的应用程序执行不同的操作时,数据库将同时处理它们。 当扩展应用程序时,并发是一个关键概念。

Concurrency and parallelism are also built into Rust. Rust solves most of the concurrency problems during compile time by using the concept of Ownerships. Learn how Rust handles concurrency here.

并发和并行性也内置在Rust中。 Rust使用所有权概念解决了编译期间的大多数并发问题。 在此处了解Rust如何处理并发 。

使用Rust (Working With Rust)

Now that you understand the core features of Rust, let's write a few lines of code. You can find installation instructions here if you want to try out Rust on your computer.

现在您了解了Rust的核心功能,让我们写几行代码。 如果要在计算机上试用Rust,可以在这里找到安装说明 。

Let's start with a simple “Hello World!” function.

让我们从一个简单的“ Hello World!”开始。 功能。

// Main function
fn main() {println!("Hello World!");
}

Yep. That's pretty much it. Let's try to add two numbers.

是的 就是这样。 让我们尝试将两个数字相加。

// Main function
fn main() {let a = 100;let b = 200;println!("Result is {}",a+b);
}

Again, pretty standard. Now let's look at an array operation.

再次,相当标准。 现在让我们看一下数组操作。

// Main function
fn main(){let arr:[i32;4] = [1,2,3,4];println!("array size is {}",arr.len());
}

If you look at line 3, we use “:[i32;4]”. Here we tell Rust that we are declaring an array of length 4 with 32-bit integers.

如果您看一下第3行,我们使用“:[i32; 4]”。 在这里,我们告诉Rust,我们正在声明一个长度为4的数组,其中包含32位整数。

Declaring data types in detail is a key factor in improving the performance of a program. You are helping the compiler save time by explicitly declaring what type of data you are about to assign to a variable.

详细声明数据类型是提高程序性能的关键因素。 您通过明确声明将要分配给变量的数据类型来帮助编译器节省时间。

Letting the compiler figure out the data type is one of the main reasons you run into performance issues while scaling your application.

让编译器弄清楚数据类型是在扩展应用程序时遇到性能问题的主要原因之一。

Also, Rust is a statically typed language, which means it must know the types of all variables at compile time.

同样, Rust是一种静态类型的语言 ,这意味着它必须在编译时知道所有变量的类型。

Though Rust is syntactically similar to C and C++, don't let its simplicity fool you. Rust does come with a steep learning curve. But it is totally worth it once you get a good grasp of the basics.

尽管Rust在语法上类似于C和C ++,但不要让其简单性欺骗您。 Rust确实具有陡峭的学习曲线。 但是,一旦您掌握了基本知识,就完全值得。

谁使用Rust? (Who Uses Rust?)

Now that you have a good grasp of what Rust is, let's look at who uses Rust.

既然您已经了解了Rust是什么,那么让我们看看谁使用Rust。

微软 (Microsoft)

Once a fierce adversary of open source, Microsoft is now an avid contributor to a number of open-source projects. Their .net core project is one of the most popular open-source frameworks used by developers today.

曾经是开源的激烈对手,Microsoft现在是许多开源项目的热心贡献者。 他们的.net核心项目是当今开发人员使用的最受欢迎的开源框架之一。

Microsoft has chosen Rust for security and performance-critical applications. Rust is also used extensively in Azure, especially in its IoT Edge platform to run AI applications on IoT devices.

Microsoft已选择Rust用于安全性和对性能至关重要的应用程序。 Rust在Azure中也被广泛使用,尤其是在其IoT Edge平台中,以在IoT设备上运行AI应用程序。

投寄箱 (Dropbox)

Dropbox uses Rust to improve its data center efficiency. Rust is now powering core services of Dropbox serving more than 500 million users.

Dropbox使用Rust来提高其数据中心效率。 Rust现在为Dropbox的核心服务提供支持,为超过5亿用户提供服务。

Dropbox recently wrote a detailed article on how they re-wrote their core engine.

Dropbox 最近写了一篇有关如何重新编写其核心引擎的详细文章 。

In Dropbox’s own words,

用Dropbox自己的话说,

Rust has been a force multiplier for our team, and betting on Rust was one of the best decisions we made.
Rust一直是我们团队的力量倍增器,对Rust的押注是我们做出的最佳决定之一。

Rust was also a contributing factor that helped Dropbox move its infrastructure from AWS to its own data centers.

Rust也是帮助Dropbox将其基础架构从AWS迁移到其自己的数据中心的一个促成因素。

菲格玛 (Figma)



Figma is a cloud-based designing and prototyping tool that you can use in your browser. It is an excellent tool for designing, prototyping, and exporting your designs into code. Learn more about Figma here.

Figma是一种基于云的设计和原型制作工具,可以在浏览器中使用。 它是用于设计,制作原型并将设计导出到代码中的出色工具。 在此处了解有关Figma的更多信息 。

Concurrency is crucial for a collaborative tool where many users will be working on a single design at a time. Figma used Rust to write a high-performance server that helped them scale their product and achieve the performance they were looking for.

并发对于一个协作工具至关重要,在协作工具中,许多用户将同时处理一个设计。 Figma使用Rust编写了一个高性能服务器,可以帮助他们扩展产品并实现他们想要的性能。

Here is the article Figma wrote about their experience with Rust.

这是Figma写的关于他们在Rust方面的经验的文章 。

TL; DR (TL;DR)

Rust is a systems programming language that has been voted as StackOverflow’s most loved programming languages, four years in a row.

Rust是一种系统编程语言,已连续四年被评为StackOverflow最受欢迎的编程语言 。

Rust gives you control over low-level details and provides remarkable improvements in speed and stability.

Rust使您可以控制低级细节,并在速度和稳定性方面取得了显着改善。

It has helped companies like Dropbox, Figma, and Microsoft build better applications for their customers.

它已经帮助Dropbox,Figma和Microsoft等公司为其客户构建更好的应用程序。

The language is being increasingly adopted by companies looking to scale their applications with higher performance and concurrency. Sounds interesting? Start learning Rust here.

希望通过更高性能和并发性扩展其应用程序的公司越来越多地采用该语言。 听起来不错? 从这里开始学习Rust 。



I regularly write about Machine Learning, Cyber Security, and DevOps. You can signup for my weekly newsletter here.

我定期撰写有关机器学习,网络安全和DevOps的文章。 您可以 在这里 注册我的 每周新闻

翻译自: https://www.freecodecamp.org/news/rust-getting-started-with-the-most-loved-programming-language/

rust 编程入门

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

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

相关文章

【转载】springboot:如何优雅的使用mybatis

这两天启动了一个新项目因为项目组成员一直都使用的是mybatis,虽然个人比较喜欢jpa这种极简的模式,但是为了项目保持统一性技术选型还是定了 mybatis。到网上找了一下关于spring boot和mybatis组合的相关资料,各种各样的形式都有,…

创建react应用程序_通过构建电影搜索应用程序在1小时内了解React

创建react应用程序If youve been meaning to learn React but are unsure of where to start, Scrimbas brand new Build a Movie Search App course is perfect for you! 如果您一直想学习React,但是不确定从哪里开始,那么Scrimba全新的Build a Movie S…

GeoServer自动发布地图服务

1 NetCDF气象文件自动发布案例 GeoServer是一个地理服务器,提供了管理页面进行服务发布,样式,切片,图层预览等一系列操作,但是手动进行页面配置有时并不满足业务需求,所以GeoServer同时提供了丰富的rest接口…

selenium+ python自动化--断言assertpy

前言: 在对登录验证时,不知道为何原因用unittest的断言不成功,就在网上发现这个assertpy,因此做个笔记 准备: pip install assertypy 例子: 1 from assertpy import assert_that2 3 4 def check_login():5 …

11. 盛最多水的容器

11. 盛最多水的容器 给你 n 个非负整数 a1,a2,…,an,每个数代表坐标中的一个点 (i, ai) 。在坐标内画 n 条垂直线,垂直线 i 的两个端点分别为 (i, ai) 和 (i, 0) 。找出其中的两条线,使得它们与 x 轴共同构…

深入理解ES6 pdf

下载地址:网盘下载目录 第1章 块级作用域绑定 1var声明及变量提升(Hoisting)机制 1块级声明 3-- let声明 3-- 禁止重声明 4-- const声明 4-- 临时死区(Temporal Dead Zone) 6循环中的块作用域绑定 7-- 循环中的函…

MyBatis之输入与输出(resultType、resultMap)映射

2019独角兽企业重金招聘Python工程师标准>>> 在MyBatis中,我们通过parameterType完成输入映射(指将值映射到sql语句的占位符中,值的类型与dao层响应方法的参数类型一致),通过resultType完成输出映射(从数据库中输出,通…

2021-08-25556. 下一个更大元素 III

556. 下一个更大元素 III 给你一个正整数 n ,请你找出符合条件的最小整数,其由重新排列 n 中存在的每位数字组成,并且其值大于 n 。如果不存在这样的正整数,则返回 -1 。 注意 ,返回的整数应当是一个 32 位整数 &…

gradle tool升级到3.0注意事项

Gradle版本升级 其实当AS升级到3.0之后,Gradle Plugin和Gradle不升级也是可以继续使用的,但很多新的特性如:Java8支持、新的依赖匹配机制、AAPT2等新功能都无法正常使用。 Gradle Plugin升级到3.0.0及以上,修改project/build.grad…

如何使用React,TypeScript和React测试库创建出色的用户体验

Im always willing to learn, no matter how much I know. As a software engineer, my thirst for knowledge has increased a lot. I know that I have a lot of things to learn daily.无论我知道多少,我总是愿意学习。 作为软件工程师,我对知识的渴望…

PowerDesigner常用设置

2019独角兽企业重金招聘Python工程师标准>>> 使用powerdesigner进行数据库设计确实方便,以下是一些常用的设置 附加:工具栏不见了 调色板(Palette)快捷工具栏不见了 PowerDesigner 快捷工具栏 palette 不见了,怎么重新打开&#x…

bzoj5090[lydsy11月赛]组题

裸的01分数规划,二分答案,没了. #include<cstdio> #include<algorithm> using namespace std; const int maxn100005; int a[maxn]; double b[maxn]; double c[maxn]; typedef long long ll; ll gcd(ll a,ll b){return (b0)?a:gcd(b,a%b); } int main(){int n,k;s…

797. 所有可能的路径

797. 所有可能的路径 给你一个有 n 个节点的 有向无环图&#xff08;DAG&#xff09;&#xff0c;请你找出所有从节点 0 到节点 n-1 的路径并输出&#xff08;不要求按特定顺序&#xff09; 二维数组的第 i 个数组中的单元都表示有向图中 i 号节点所能到达的下一些节点&#…

深入框架本源系列 —— Virtual Dom

该系列会逐步更新&#xff0c;完整的讲解目前主流框架中底层相通的技术&#xff0c;接下来的代码内容都会更新在 这里 为什么需要 Virtual Dom 众所周知&#xff0c;操作 DOM 是很耗费性能的一件事情&#xff0c;既然如此&#xff0c;我们可以考虑通过 JS 对象来模拟 DOM 对象&…

网络工程师常备工具_网络安全工程师应该知道的10种工具

网络工程师常备工具If youre a penetration tester, there are numerous tools you can use to help you accomplish your goals. 如果您是渗透测试人员&#xff0c;则可以使用许多工具来帮助您实现目标。 From scanning to post-exploitation, here are ten tools you must k…

configure: error: You need a C++ compiler for C++ support.

安装pcre包的时候提示缺少c编译器 报错信息如下&#xff1a; configure: error: You need a C compiler for C support. 解决办法&#xff0c;使用yum安装&#xff1a;yum -y install gcc-c 转载于:https://www.cnblogs.com/mkl34367803/p/8428264.html

程序编写经验教训_编写您永远都不会忘记的有效绩效评估的经验教训。

程序编写经验教训This article is intended for two audiences: people who need to write self-evaluations, and people who need to provide feedback to their colleagues. 本文面向两个受众&#xff1a;需要编写自我评估的人员和需要向同事提供反馈的人员。 For the purp…

删除文件及文件夹命令

方法一&#xff1a; echo off ::演示&#xff1a;删除指定路径下指定天数之前&#xff08;以文件的最后修改日期为准&#xff09;的文件。 ::如果演示结果无误&#xff0c;把del前面的echo去掉&#xff0c;即可实现真正删除。 ::本例需要Win2003/Vista/Win7系统自带的forfiles命…

BZOJ 3527: [ZJOI2014]力(FFT)

题意 给出\(n\)个数\(q_i\),给出\(Fj\)的定义如下&#xff1a; \[F_j\sum \limits _ {i < j} \frac{q_iq_j}{(i-j)^2}-\sum \limits _{i >j} \frac{q_iq_j}{(i-j)^2}.\] 令\(E_iF_i/q_i\)&#xff0c;求\(E_i\). 题解 一开始没发现求\(E_i\)... 其实题目还更容易想了... …

c# 实现刷卡_如何在RecyclerView中实现“刷卡选项”

c# 实现刷卡Lets say a user of your site wants to edit a list item without opening the item and looking for editing options. If you can enable this functionality, it gives that user a good User Experience. 假设您网站的用户想要在不打开列表项并寻找编辑选项的情…