Rust hello world 语法解说

Posted wzjhoutai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rust hello world 语法解说相关的知识,希望对你有一定的参考价值。

Rust的hello world代码例如以下:

fn main() {
    println!("Hello, world!");
}
1、fn main()


fn main(){   }  这句是在 rust 中定义一个功能函数,main 和C语言、java语言里面的main一样。是运行 rust 程序的入口。

这里定义的 main 没有输入參数,也没有返回值。


功能函数的函数体使用大括号 { } 


2、println

println!("Hello, world!");
输入Hello,world 到终端(控制台)。


与java的 println 非常像,有一点不同的是 println后面有一个叹号 !

 

这在 rust 中叫做 宏(macro)。

 每行 rust 语句和java相似。以 ; 分号结束。




很多其它内容地址:

https://doc.rust-lang.org/book/getting-started.html


以上是关于Rust hello world 语法解说的主要内容,如果未能解决你的问题,请参考以下文章

Rust hello world !

初窥门径:从hello world开始rust学习

rust 编写hello world redis

rust 编写hello world redis

rust 编写hello world redis

00_Rust安装及Hello World