diff --git "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/config.json" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/config.json" index 0a9a59cf767a18c2af32dc2b2cd2f6865b49841f..550c3a0eb8b65598357e81f9b36a0d59be0032d8 100644 --- "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/config.json" +++ "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/config.json" @@ -51,6 +51,7 @@ ], "export": [ "helloworld.json", - "historyofrust.json" + "historyofrust.json", + "rust_domains.json" ] } \ No newline at end of file diff --git "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/historyofrust.json" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/historyofrust.json" index a1c1a435820c6c48960eaacc152a0bbc188f25fa..86d94fcab9506179699cae6ea2f9cd3ce1f75606 100644 --- "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/historyofrust.json" +++ "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/historyofrust.json" @@ -1,7 +1,7 @@ { "type": "code_options", - "author": "maozhonggui", + "author": "jacky_rust", "source": "historyofrust.md", - "notebook_enable": true, + "notebook_enable": false, "exercise_id": "7e6ebda86d1e44b7974f719f08c24c7e" } \ No newline at end of file diff --git "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/rust_domains.json" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/rust_domains.json" new file mode 100644 index 0000000000000000000000000000000000000000..dc8cd9c2a2464455b9f3e475d12b344093d65f59 --- /dev/null +++ "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/rust_domains.json" @@ -0,0 +1,6 @@ +{ + "type": "code_options", + "author": "jacky_rust", + "source": "rust_domains.md", + "notebook_enable": false +} \ No newline at end of file diff --git "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/rust_domains.md" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/rust_domains.md" new file mode 100644 index 0000000000000000000000000000000000000000..c5773341b29393c5bd8890774539833b3fc0aae5 --- /dev/null +++ "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/rust_domains.md" @@ -0,0 +1,65 @@ +# Rust 的应用领域 + +Rust 语言应用领域广泛,在命令行工具、WebAssembly、网络编程、嵌入式、系统编程、数据库等等各种领域都有很好的应用。 + +RustMagazine 在[2021年六月刊](https://rustmagazine.github.io/rust_magazine_2021/chapter_6/hots.html)介绍了一个Rust 在艺术领域的商业应用案例 MORPH,该艺术项目使用486步进电机,86,000个LED和5通道颗粒式合成引擎,控制软件系统使用 Rust 实现,利用的是 nannou 和 koto。 + +![Rust usage on a commercial art project](./rust_embedded.png) + +以上案例展示了 Rust 在哪方面的应用? 以下选项最准确的是: + +## 答案 + +```rust +fn main(){ + let rust_usage_domains = ["命令行工具", "WebAssembly", "网络编程", "嵌入式", "系统编程", "数据库", "区块链"]; + for domain in rust_usage_domains { + if domain.contains("嵌入式") || domain.to_lowercase().contains("embedded") { + println!("{}", domain); + } + } +} +``` + +## 选项 + +### A + +```rust +fn main(){ + let rust_usage_domains = ["命令行工具", "WebAssembly", "网络编程", "嵌入式", "系统编程", "数据库", "区块链"]; + println!("{:?}", rust_usage_domains); +} +``` + +### B + +```rust +fn main(){ + let rust_usage_domains = ["命令行工具", "WebAssembly", "网络编程", "嵌入式", "系统编程", "数据库", "区块链"]; + loop { + if domain.includes("嵌入式") || domain.includes("embedded") { + println!("{}", domain); + } + } +} +``` + +### C + +```rust +fn main(){ + let rust_usage_domains = ["命令行工具", "WebAssembly", "网络编程", "嵌入式", "系统编程", "数据库", "区块链"]; + for domain in rust_usage_domains { + println!("{}", domain); + } +} +``` + + diff --git "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/rust_embedded.png" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/rust_embedded.png" new file mode 100644 index 0000000000000000000000000000000000000000..2793e6e5aa9a5616c8a48b36e51aa46585410495 Binary files /dev/null and "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/rust_embedded.png" differ diff --git "a/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/rust_embedded_s.gif" "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/rust_embedded_s.gif" new file mode 100644 index 0000000000000000000000000000000000000000..166e65cd5c62ed59a205ab88baf546bd0e20bc5d Binary files /dev/null and "b/data/1.rust\345\210\235\351\230\266/1.\351\242\204\345\244\207\347\237\245\350\257\206/1.rust\347\256\200\344\273\213/rust_embedded_s.gif" differ