build: 2026-06-22
This commit is contained in:
645
build/ch08-02-strings.html
Normal file
645
build/ch08-02-strings.html
Normal file
@@ -0,0 +1,645 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html lang="en" class="light sidebar-visible" dir="ltr">
|
||||
<head>
|
||||
<!-- Book generated using mdBook -->
|
||||
<meta charset="UTF-8">
|
||||
<title>Storing UTF-8 Encoded Text with Strings - The Rust Programming Language</title>
|
||||
|
||||
|
||||
<!-- Custom HTML head -->
|
||||
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<link rel="icon" href="favicon-de23e50b.svg">
|
||||
<link rel="shortcut icon" href="favicon-8114d1fc.png">
|
||||
<link rel="stylesheet" href="css/variables-8adf115d.css">
|
||||
<link rel="stylesheet" href="css/general-0392ca55.css">
|
||||
<link rel="stylesheet" href="css/chrome-fc474251.css">
|
||||
<link rel="stylesheet" href="css/print-9e4910d8.css" media="print">
|
||||
|
||||
<!-- Fonts -->
|
||||
<link rel="stylesheet" href="fonts/fonts-9644e21d.css">
|
||||
|
||||
<!-- Highlight.js Stylesheets -->
|
||||
<link rel="stylesheet" id="mdbook-highlight-css" href="highlight-493f70e1.css">
|
||||
<link rel="stylesheet" id="mdbook-tomorrow-night-css" href="tomorrow-night-4c0ae647.css">
|
||||
<link rel="stylesheet" id="mdbook-ayu-highlight-css" href="ayu-highlight-3fdfc3ac.css">
|
||||
|
||||
<!-- Custom theme stylesheets -->
|
||||
<link rel="stylesheet" href="ferris-d33b75bf.css">
|
||||
<link rel="stylesheet" href="theme/2018-edition-4e126c62.css">
|
||||
<link rel="stylesheet" href="theme/semantic-notes-9b5766c0.css">
|
||||
<link rel="stylesheet" href="theme/listing-cab26221.css">
|
||||
|
||||
|
||||
<!-- Provide site root and default themes to javascript -->
|
||||
<script>
|
||||
const path_to_root = "";
|
||||
const default_light_theme = "light";
|
||||
const default_dark_theme = "navy";
|
||||
window.path_to_searchindex_js = "searchindex-6a1da8cc.js";
|
||||
</script>
|
||||
<!-- Start loading toc.js asap -->
|
||||
<script src="toc-0e4ce700.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="mdbook-help-container">
|
||||
<div id="mdbook-help-popup">
|
||||
<h2 class="mdbook-help-title">Keyboard shortcuts</h2>
|
||||
<div>
|
||||
<p>Press <kbd>←</kbd> or <kbd>→</kbd> to navigate between chapters</p>
|
||||
<p>Press <kbd>S</kbd> or <kbd>/</kbd> to search in the book</p>
|
||||
<p>Press <kbd>?</kbd> to show this help</p>
|
||||
<p>Press <kbd>Esc</kbd> to hide this help</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="mdbook-body-container">
|
||||
<!-- Work around some values being stored in localStorage wrapped in quotes -->
|
||||
<script>
|
||||
try {
|
||||
let theme = localStorage.getItem('mdbook-theme');
|
||||
let sidebar = localStorage.getItem('mdbook-sidebar');
|
||||
|
||||
if (theme.startsWith('"') && theme.endsWith('"')) {
|
||||
localStorage.setItem('mdbook-theme', theme.slice(1, theme.length - 1));
|
||||
}
|
||||
|
||||
if (sidebar.startsWith('"') && sidebar.endsWith('"')) {
|
||||
localStorage.setItem('mdbook-sidebar', sidebar.slice(1, sidebar.length - 1));
|
||||
}
|
||||
} catch (e) { }
|
||||
</script>
|
||||
|
||||
<!-- Set the theme before any content is loaded, prevents flash -->
|
||||
<script>
|
||||
const default_theme = window.matchMedia("(prefers-color-scheme: dark)").matches ? default_dark_theme : default_light_theme;
|
||||
let theme;
|
||||
try { theme = localStorage.getItem('mdbook-theme'); } catch(e) { }
|
||||
if (theme === null || theme === undefined) { theme = default_theme; }
|
||||
const html = document.documentElement;
|
||||
html.classList.remove('light')
|
||||
html.classList.add(theme);
|
||||
html.classList.add("js");
|
||||
</script>
|
||||
|
||||
<input type="checkbox" id="mdbook-sidebar-toggle-anchor" class="hidden">
|
||||
|
||||
<!-- Hide / unhide sidebar before it is displayed -->
|
||||
<script>
|
||||
let sidebar = null;
|
||||
const sidebar_toggle = document.getElementById("mdbook-sidebar-toggle-anchor");
|
||||
if (document.body.clientWidth >= 1080) {
|
||||
try { sidebar = localStorage.getItem('mdbook-sidebar'); } catch(e) { }
|
||||
sidebar = sidebar || 'visible';
|
||||
} else {
|
||||
sidebar = 'hidden';
|
||||
sidebar_toggle.checked = false;
|
||||
}
|
||||
if (sidebar === 'visible') {
|
||||
sidebar_toggle.checked = true;
|
||||
} else {
|
||||
html.classList.remove('sidebar-visible');
|
||||
}
|
||||
</script>
|
||||
|
||||
<nav id="mdbook-sidebar" class="sidebar" aria-label="Table of contents">
|
||||
<!-- populated by js -->
|
||||
<mdbook-sidebar-scrollbox class="sidebar-scrollbox"></mdbook-sidebar-scrollbox>
|
||||
<noscript>
|
||||
<iframe class="sidebar-iframe-outer" src="toc.html"></iframe>
|
||||
</noscript>
|
||||
<div id="mdbook-sidebar-resize-handle" class="sidebar-resize-handle">
|
||||
<div class="sidebar-resize-indicator"></div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div id="mdbook-page-wrapper" class="page-wrapper">
|
||||
|
||||
<div class="page">
|
||||
<div id="mdbook-menu-bar-hover-placeholder"></div>
|
||||
<div id="mdbook-menu-bar" class="menu-bar sticky">
|
||||
<div class="left-buttons">
|
||||
<label id="mdbook-sidebar-toggle" class="icon-button" for="mdbook-sidebar-toggle-anchor" title="Toggle Table of Contents" aria-label="Toggle Table of Contents" aria-controls="mdbook-sidebar">
|
||||
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M0 96C0 78.3 14.3 64 32 64H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32C14.3 128 0 113.7 0 96zM0 256c0-17.7 14.3-32 32-32H416c17.7 0 32 14.3 32 32s-14.3 32-32 32H32c-17.7 0-32-14.3-32-32zM448 416c0 17.7-14.3 32-32 32H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H416c17.7 0 32 14.3 32 32z"/></svg></span>
|
||||
</label>
|
||||
<button id="mdbook-theme-toggle" class="icon-button" type="button" title="Change theme" aria-label="Change theme" aria-haspopup="true" aria-expanded="false" aria-controls="mdbook-theme-list">
|
||||
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M371.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L600.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S549.7-4.4 531.1 9.6L294.4 187.2c-24 18-38.2 46.1-38.4 76.1L371.3 367.1zm-19.6 25.4l-116-104.4C175.9 290.3 128 339.6 128 400c0 3.9 .2 7.8 .6 11.6c1.8 17.5-10.2 36.4-27.8 36.4H96c-17.7 0-32 14.3-32 32s14.3 32 32 32H240c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z"/></svg></span>
|
||||
</button>
|
||||
<ul id="mdbook-theme-list" class="theme-popup" aria-label="Themes" role="menu">
|
||||
<li role="none"><button role="menuitem" class="theme" id="mdbook-theme-default_theme">Auto</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="mdbook-theme-light">Light</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="mdbook-theme-rust">Rust</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="mdbook-theme-coal">Coal</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="mdbook-theme-navy">Navy</button></li>
|
||||
<li role="none"><button role="menuitem" class="theme" id="mdbook-theme-ayu">Ayu</button></li>
|
||||
</ul>
|
||||
<button id="mdbook-search-toggle" class="icon-button" type="button" title="Search (`/`)" aria-label="Toggle Searchbar" aria-expanded="false" aria-keyshortcuts="/ s" aria-controls="mdbook-searchbar">
|
||||
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352c79.5 0 144-64.5 144-144s-64.5-144-144-144S64 128.5 64 208s64.5 144 144 144z"/></svg></span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<h1 class="menu-title">The Rust Programming Language</h1>
|
||||
|
||||
<div class="right-buttons">
|
||||
<a href="print.html" title="Print this book" aria-label="Print this book">
|
||||
<span class=fa-svg id="print-button"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M128 0C92.7 0 64 28.7 64 64v96h64V64H354.7L384 93.3V160h64V93.3c0-17-6.7-33.3-18.7-45.3L400 18.7C388 6.7 371.7 0 354.7 0H128zM384 352v32 64H128V384 368 352H384zm64 32h32c17.7 0 32-14.3 32-32V256c0-35.3-28.7-64-64-64H64c-35.3 0-64 28.7-64 64v96c0 17.7 14.3 32 32 32H64v64c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V384zm-16-88c-13.3 0-24-10.7-24-24s10.7-24 24-24s24 10.7 24 24s-10.7 24-24 24z"/></svg></span>
|
||||
</a>
|
||||
<a href="https://github.com/rust-lang/book" title="Git repository" aria-label="Git repository">
|
||||
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z"/></svg></span>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="mdbook-search-wrapper" class="hidden">
|
||||
<form id="mdbook-searchbar-outer" class="searchbar-outer">
|
||||
<div class="search-wrapper">
|
||||
<input type="search" id="mdbook-searchbar" name="searchbar" placeholder="Search this book ..." aria-controls="mdbook-searchresults-outer" aria-describedby="searchresults-header">
|
||||
<div class="spinner-wrapper">
|
||||
<span class=fa-svg id="fa-spin"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M304 48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zm0 416c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM48 304c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zm464-48c0-26.5-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48s48-21.5 48-48zM142.9 437c18.7-18.7 18.7-49.1 0-67.9s-49.1-18.7-67.9 0s-18.7 49.1 0 67.9s49.1 18.7 67.9 0zm0-294.2c18.7-18.7 18.7-49.1 0-67.9S93.7 56.2 75 75s-18.7 49.1 0 67.9s49.1 18.7 67.9 0zM369.1 437c18.7 18.7 49.1 18.7 67.9 0s18.7-49.1 0-67.9s-49.1-18.7-67.9 0s-18.7 49.1 0 67.9z"/></svg></span>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<div id="mdbook-searchresults-outer" class="searchresults-outer hidden">
|
||||
<div id="mdbook-searchresults-header" class="searchresults-header"></div>
|
||||
<ul id="mdbook-searchresults">
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Apply ARIA attributes after the sidebar and the sidebar toggle button are added to the DOM -->
|
||||
<script>
|
||||
document.getElementById('mdbook-sidebar-toggle').setAttribute('aria-expanded', sidebar === 'visible');
|
||||
document.getElementById('mdbook-sidebar').setAttribute('aria-hidden', sidebar !== 'visible');
|
||||
Array.from(document.querySelectorAll('#mdbook-sidebar a')).forEach(function(link) {
|
||||
link.setAttribute('tabIndex', sidebar === 'visible' ? 0 : -1);
|
||||
});
|
||||
</script>
|
||||
|
||||
<div id="mdbook-content" class="content">
|
||||
<main>
|
||||
<h2 id="storing-utf-8-encoded-text-with-strings"><a class="header" href="#storing-utf-8-encoded-text-with-strings">Storing UTF-8 Encoded Text with Strings</a></h2>
|
||||
<p>We talked about strings in Chapter 4, but we’ll look at them in more depth now.
|
||||
New Rustaceans commonly get stuck on strings for a combination of three
|
||||
reasons: Rust’s propensity for exposing possible errors, strings being a more
|
||||
complicated data structure than many programmers give them credit for, and
|
||||
UTF-8. These factors combine in a way that can seem difficult when you’re
|
||||
coming from other programming languages.</p>
|
||||
<p>We discuss strings in the context of collections because strings are
|
||||
implemented as a collection of bytes, plus some methods to provide useful
|
||||
functionality when those bytes are interpreted as text. In this section, we’ll
|
||||
talk about the operations on <code>String</code> that every collection type has, such as
|
||||
creating, updating, and reading. We’ll also discuss the ways in which <code>String</code>
|
||||
is different from the other collections, namely, how indexing into a <code>String</code> is
|
||||
complicated by the differences between how people and computers interpret
|
||||
<code>String</code> data.</p>
|
||||
<!-- Old headings. Do not remove or links may break. -->
|
||||
<p><a id="what-is-a-string"></a></p>
|
||||
<h3 id="defining-strings"><a class="header" href="#defining-strings">Defining Strings</a></h3>
|
||||
<p>We’ll first define what we mean by the term <em>string</em>. Rust has only one string
|
||||
type in the core language, which is the string slice <code>str</code> that is usually seen
|
||||
in its borrowed form, <code>&str</code>. In Chapter 4, we talked about string slices,
|
||||
which are references to some UTF-8 encoded string data stored elsewhere. String
|
||||
literals, for example, are stored in the program’s binary and are therefore
|
||||
string slices.</p>
|
||||
<p>The <code>String</code> type, which is provided by Rust’s standard library rather than
|
||||
coded into the core language, is a growable, mutable, owned, UTF-8 encoded
|
||||
string type. When Rustaceans refer to “strings” in Rust, they might be
|
||||
referring to either the <code>String</code> or the string slice <code>&str</code> types, not just one
|
||||
of those types. Although this section is largely about <code>String</code>, both types are
|
||||
used heavily in Rust’s standard library, and both <code>String</code> and string slices
|
||||
are UTF-8 encoded.</p>
|
||||
<h3 id="creating-a-new-string"><a class="header" href="#creating-a-new-string">Creating a New String</a></h3>
|
||||
<p>Many of the same operations available with <code>Vec<T></code> are available with <code>String</code>
|
||||
as well because <code>String</code> is actually implemented as a wrapper around a vector
|
||||
of bytes with some extra guarantees, restrictions, and capabilities. An example
|
||||
of a function that works the same way with <code>Vec<T></code> and <code>String</code> is the <code>new</code>
|
||||
function to create an instance, shown in Listing 8-11.</p>
|
||||
<figure class="listing" id="listing-8-11">
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">fn main() {
|
||||
</span> let mut s = String::new();
|
||||
<span class="boring">}</span></code></pre>
|
||||
<figcaption><a href="#listing-8-11">Listing 8-11</a>: Creating a new, empty <code>String</code></figcaption>
|
||||
</figure>
|
||||
<p>This line creates a new, empty string called <code>s</code>, into which we can then load
|
||||
data. Often, we’ll have some initial data with which we want to start the
|
||||
string. For that, we use the <code>to_string</code> method, which is available on any type
|
||||
that implements the <code>Display</code> trait, as string literals do. Listing 8-12 shows
|
||||
two examples.</p>
|
||||
<figure class="listing" id="listing-8-12">
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">fn main() {
|
||||
</span> let data = "initial contents";
|
||||
|
||||
let s = data.to_string();
|
||||
|
||||
// The method also works on a literal directly:
|
||||
let s = "initial contents".to_string();
|
||||
<span class="boring">}</span></code></pre>
|
||||
<figcaption><a href="#listing-8-12">Listing 8-12</a>: Using the <code>to_string</code> method to create a <code>String</code> from a string literal</figcaption>
|
||||
</figure>
|
||||
<p>This code creates a string containing <code>initial contents</code>.</p>
|
||||
<p>We can also use the function <code>String::from</code> to create a <code>String</code> from a string
|
||||
literal. The code in Listing 8-13 is equivalent to the code in Listing 8-12
|
||||
that uses <code>to_string</code>.</p>
|
||||
<figure class="listing" id="listing-8-13">
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">fn main() {
|
||||
</span> let s = String::from("initial contents");
|
||||
<span class="boring">}</span></code></pre>
|
||||
<figcaption><a href="#listing-8-13">Listing 8-13</a>: Using the <code>String::from</code> function to create a <code>String</code> from a string literal</figcaption>
|
||||
</figure>
|
||||
<p>Because strings are used for so many things, we can use many different generic
|
||||
APIs for strings, providing us with a lot of options. Some of them can seem
|
||||
redundant, but they all have their place! In this case, <code>String::from</code> and
|
||||
<code>to_string</code> do the same thing, so which one you choose is a matter of style and
|
||||
readability.</p>
|
||||
<p>Remember that strings are UTF-8 encoded, so we can include any properly encoded
|
||||
data in them, as shown in Listing 8-14.</p>
|
||||
<figure class="listing" id="listing-8-14">
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">fn main() {
|
||||
</span> let hello = String::from("السلام عليكم");
|
||||
let hello = String::from("Dobrý den");
|
||||
let hello = String::from("Hello");
|
||||
let hello = String::from("שלום");
|
||||
let hello = String::from("नमस्ते");
|
||||
let hello = String::from("こんにちは");
|
||||
let hello = String::from("안녕하세요");
|
||||
let hello = String::from("你好");
|
||||
let hello = String::from("Olá");
|
||||
let hello = String::from("Здравствуйте");
|
||||
let hello = String::from("Hola");
|
||||
<span class="boring">}</span></code></pre>
|
||||
<figcaption><a href="#listing-8-14">Listing 8-14</a>: Storing greetings in different languages in strings</figcaption>
|
||||
</figure>
|
||||
<p>All of these are valid <code>String</code> values.</p>
|
||||
<h3 id="updating-a-string"><a class="header" href="#updating-a-string">Updating a String</a></h3>
|
||||
<p>A <code>String</code> can grow in size and its contents can change, just like the contents
|
||||
of a <code>Vec<T></code>, if you push more data into it. In addition, you can conveniently
|
||||
use the <code>+</code> operator or the <code>format!</code> macro to concatenate <code>String</code> values.</p>
|
||||
<!-- Old headings. Do not remove or links may break. -->
|
||||
<p><a id="appending-to-a-string-with-push_str-and-push"></a></p>
|
||||
<h4 id="appending-with-push_str-or-push"><a class="header" href="#appending-with-push_str-or-push">Appending with <code>push_str</code> or <code>push</code></a></h4>
|
||||
<p>We can grow a <code>String</code> by using the <code>push_str</code> method to append a string slice,
|
||||
as shown in Listing 8-15.</p>
|
||||
<figure class="listing" id="listing-8-15">
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">fn main() {
|
||||
</span> let mut s = String::from("foo");
|
||||
s.push_str("bar");
|
||||
<span class="boring">}</span></code></pre>
|
||||
<figcaption><a href="#listing-8-15">Listing 8-15</a>: Appending a string slice to a <code>String</code> using the <code>push_str</code> method</figcaption>
|
||||
</figure>
|
||||
<p>After these two lines, <code>s</code> will contain <code>foobar</code>. The <code>push_str</code> method takes a
|
||||
string slice because we don’t necessarily want to take ownership of the
|
||||
parameter. For example, in the code in Listing 8-16, we want to be able to use
|
||||
<code>s2</code> after appending its contents to <code>s1</code>.</p>
|
||||
<figure class="listing" id="listing-8-16">
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">fn main() {
|
||||
</span> let mut s1 = String::from("foo");
|
||||
let s2 = "bar";
|
||||
s1.push_str(s2);
|
||||
println!("s2 is {s2}");
|
||||
<span class="boring">}</span></code></pre>
|
||||
<figcaption><a href="#listing-8-16">Listing 8-16</a>: Using a string slice after appending its contents to a <code>String</code></figcaption>
|
||||
</figure>
|
||||
<p>If the <code>push_str</code> method took ownership of <code>s2</code>, we wouldn’t be able to print
|
||||
its value on the last line. However, this code works as we’d expect!</p>
|
||||
<p>The <code>push</code> method takes a single character as a parameter and adds it to the
|
||||
<code>String</code>. Listing 8-17 adds the letter <em>l</em> to a <code>String</code> using the <code>push</code>
|
||||
method.</p>
|
||||
<figure class="listing" id="listing-8-17">
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">fn main() {
|
||||
</span> let mut s = String::from("lo");
|
||||
s.push('l');
|
||||
<span class="boring">}</span></code></pre>
|
||||
<figcaption><a href="#listing-8-17">Listing 8-17</a>: Adding one character to a <code>String</code> value using <code>push</code></figcaption>
|
||||
</figure>
|
||||
<p>As a result, <code>s</code> will contain <code>lol</code>.</p>
|
||||
<!-- Old headings. Do not remove or links may break. -->
|
||||
<p><a id="concatenation-with-the--operator-or-the-format-macro"></a></p>
|
||||
<h4 id="concatenating-with--or-format"><a class="header" href="#concatenating-with--or-format">Concatenating with <code>+</code> or <code>format!</code></a></h4>
|
||||
<p>Often, you’ll want to combine two existing strings. One way to do so is to use
|
||||
the <code>+</code> operator, as shown in Listing 8-18.</p>
|
||||
<figure class="listing" id="listing-8-18">
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">fn main() {
|
||||
</span> let s1 = String::from("Hello, ");
|
||||
let s2 = String::from("world!");
|
||||
let s3 = s1 + &s2; // note s1 has been moved here and can no longer be used
|
||||
<span class="boring">}</span></code></pre>
|
||||
<figcaption><a href="#listing-8-18">Listing 8-18</a>: Using the <code>+</code> operator to combine two <code>String</code> values into a new <code>String</code> value</figcaption>
|
||||
</figure>
|
||||
<p>The string <code>s3</code> will contain <code>Hello, world!</code>. The reason <code>s1</code> is no longer
|
||||
valid after the addition, and the reason we used a reference to <code>s2</code>, has to do
|
||||
with the signature of the method that’s called when we use the <code>+</code> operator.
|
||||
The <code>+</code> operator uses the <code>add</code> method, whose signature looks something like
|
||||
this:</p>
|
||||
<pre><code class="language-rust ignore">fn add(self, s: &str) -> String {</code></pre>
|
||||
<p>In the standard library, you’ll see <code>add</code> defined using generics and associated
|
||||
types. Here, we’ve substituted in concrete types, which is what happens when we
|
||||
call this method with <code>String</code> values. We’ll discuss generics in Chapter 10.
|
||||
This signature gives us the clues we need in order to understand the tricky
|
||||
bits of the <code>+</code> operator.</p>
|
||||
<p>First, <code>s2</code> has an <code>&</code>, meaning that we’re adding a reference of the second
|
||||
string to the first string. This is because of the <code>s</code> parameter in the <code>add</code>
|
||||
function: We can only add a string slice to a <code>String</code>; we can’t add two
|
||||
<code>String</code> values together. But wait—the type of <code>&s2</code> is <code>&String</code>, not <code>&str</code>,
|
||||
as specified in the second parameter to <code>add</code>. So, why does Listing 8-18
|
||||
compile?</p>
|
||||
<p>The reason we’re able to use <code>&s2</code> in the call to <code>add</code> is that the compiler
|
||||
can coerce the <code>&String</code> argument into a <code>&str</code>. When we call the <code>add</code> method,
|
||||
Rust uses a deref coercion, which here turns <code>&s2</code> into <code>&s2[..]</code>. We’ll
|
||||
discuss deref coercion in more depth in Chapter 15. Because <code>add</code> does not take
|
||||
ownership of the <code>s</code> parameter, <code>s2</code> will still be a valid <code>String</code> after this
|
||||
operation.</p>
|
||||
<p>Second, we can see in the signature that <code>add</code> takes ownership of <code>self</code>
|
||||
because <code>self</code> does <em>not</em> have an <code>&</code>. This means <code>s1</code> in Listing 8-18 will be
|
||||
moved into the <code>add</code> call and will no longer be valid after that. So, although
|
||||
<code>let s3 = s1 + &s2;</code> looks like it will copy both strings and create a new one,
|
||||
this statement actually takes ownership of <code>s1</code>, appends a copy of the contents
|
||||
of <code>s2</code>, and then returns ownership of the result. In other words, it looks
|
||||
like it’s making a lot of copies, but it isn’t; the implementation is more
|
||||
efficient than copying.</p>
|
||||
<p>If we need to concatenate multiple strings, the behavior of the <code>+</code> operator
|
||||
gets unwieldy:</p>
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">fn main() {
|
||||
</span> let s1 = String::from("tic");
|
||||
let s2 = String::from("tac");
|
||||
let s3 = String::from("toe");
|
||||
|
||||
let s = s1 + "-" + &s2 + "-" + &s3;
|
||||
<span class="boring">}</span></code></pre>
|
||||
<p>At this point, <code>s</code> will be <code>tic-tac-toe</code>. With all of the <code>+</code> and <code>"</code>
|
||||
characters, it’s difficult to see what’s going on. For combining strings in
|
||||
more complicated ways, we can instead use the <code>format!</code> macro:</p>
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">fn main() {
|
||||
</span> let s1 = String::from("tic");
|
||||
let s2 = String::from("tac");
|
||||
let s3 = String::from("toe");
|
||||
|
||||
let s = format!("{s1}-{s2}-{s3}");
|
||||
<span class="boring">}</span></code></pre>
|
||||
<p>This code also sets <code>s</code> to <code>tic-tac-toe</code>. The <code>format!</code> macro works like
|
||||
<code>println!</code>, but instead of printing the output to the screen, it returns a
|
||||
<code>String</code> with the contents. The version of the code using <code>format!</code> is much
|
||||
easier to read, and the code generated by the <code>format!</code> macro uses references
|
||||
so that this call doesn’t take ownership of any of its parameters.</p>
|
||||
<h3 id="indexing-into-strings"><a class="header" href="#indexing-into-strings">Indexing into Strings</a></h3>
|
||||
<p>In many other programming languages, accessing individual characters in a
|
||||
string by referencing them by index is a valid and common operation. However,
|
||||
if you try to access parts of a <code>String</code> using indexing syntax in Rust, you’ll
|
||||
get an error. Consider the invalid code in Listing 8-19.</p>
|
||||
<figure class="listing" id="listing-8-19">
|
||||
<pre><code class="language-rust ignore does_not_compile"><span class="boring">fn main() {
|
||||
</span> let s1 = String::from("hi");
|
||||
let h = s1[0];
|
||||
<span class="boring">}</span></code></pre>
|
||||
<figcaption><a href="#listing-8-19">Listing 8-19</a>: Attempting to use indexing syntax with a <code>String</code></figcaption>
|
||||
</figure>
|
||||
<p>This code will result in the following error:</p>
|
||||
<pre><code class="language-console">$ cargo run
|
||||
Compiling collections v0.1.0 (file:///projects/collections)
|
||||
error[E0277]: the type `str` cannot be indexed by `{integer}`
|
||||
--> src/main.rs:3:16
|
||||
|
|
||||
3 | let h = s1[0];
|
||||
| ^ string indices are ranges of `usize`
|
||||
|
|
||||
= help: the trait `SliceIndex<str>` is not implemented for `{integer}`
|
||||
= note: you can use `.chars().nth()` or `.bytes().nth()`
|
||||
for more information, see chapter 8 in The Book: <https://doc.rust-lang.org/book/ch08-02-strings.html#indexing-into-strings>
|
||||
= help: the following other types implement trait `SliceIndex<T>`:
|
||||
`usize` implements `SliceIndex<ByteStr>`
|
||||
`usize` implements `SliceIndex<[T]>`
|
||||
= note: required for `String` to implement `Index<{integer}>`
|
||||
|
||||
For more information about this error, try `rustc --explain E0277`.
|
||||
error: could not compile `collections` (bin "collections") due to 1 previous error
|
||||
</code></pre>
|
||||
<p>The error tells the story: Rust strings don’t support indexing. But why not? To
|
||||
answer that question, we need to discuss how Rust stores strings in memory.</p>
|
||||
<h4 id="internal-representation"><a class="header" href="#internal-representation">Internal Representation</a></h4>
|
||||
<p>A <code>String</code> is a wrapper over a <code>Vec<u8></code>. Let’s look at some of our properly
|
||||
encoded UTF-8 example strings from Listing 8-14. First, this one:</p>
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">fn main() {
|
||||
</span><span class="boring"> let hello = String::from("السلام عليكم");
|
||||
</span><span class="boring"> let hello = String::from("Dobrý den");
|
||||
</span><span class="boring"> let hello = String::from("Hello");
|
||||
</span><span class="boring"> let hello = String::from("שלום");
|
||||
</span><span class="boring"> let hello = String::from("नमस्ते");
|
||||
</span><span class="boring"> let hello = String::from("こんにちは");
|
||||
</span><span class="boring"> let hello = String::from("안녕하세요");
|
||||
</span><span class="boring"> let hello = String::from("你好");
|
||||
</span><span class="boring"> let hello = String::from("Olá");
|
||||
</span><span class="boring"> let hello = String::from("Здравствуйте");
|
||||
</span> let hello = String::from("Hola");
|
||||
<span class="boring">}</span></code></pre>
|
||||
<p>In this case, <code>len</code> will be <code>4</code>, which means the vector storing the string
|
||||
<code>"Hola"</code> is 4 bytes long. Each of these letters takes 1 byte when encoded in
|
||||
UTF-8. The following line, however, may surprise you (note that this string
|
||||
begins with the capital Cyrillic letter <em>Ze</em>, not the number 3):</p>
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">fn main() {
|
||||
</span><span class="boring"> let hello = String::from("السلام عليكم");
|
||||
</span><span class="boring"> let hello = String::from("Dobrý den");
|
||||
</span><span class="boring"> let hello = String::from("Hello");
|
||||
</span><span class="boring"> let hello = String::from("שלום");
|
||||
</span><span class="boring"> let hello = String::from("नमस्ते");
|
||||
</span><span class="boring"> let hello = String::from("こんにちは");
|
||||
</span><span class="boring"> let hello = String::from("안녕하세요");
|
||||
</span><span class="boring"> let hello = String::from("你好");
|
||||
</span><span class="boring"> let hello = String::from("Olá");
|
||||
</span> let hello = String::from("Здравствуйте");
|
||||
<span class="boring"> let hello = String::from("Hola");
|
||||
</span><span class="boring">}</span></code></pre>
|
||||
<p>If you were asked how long the string is, you might say 12. In fact, Rust’s
|
||||
answer is 24: That’s the number of bytes it takes to encode “Здравствуйте” in
|
||||
UTF-8, because each Unicode scalar value in that string takes 2 bytes of
|
||||
storage. Therefore, an index into the string’s bytes will not always correlate
|
||||
to a valid Unicode scalar value. To demonstrate, consider this invalid Rust
|
||||
code:</p>
|
||||
<pre><code class="language-rust ignore does_not_compile">let hello = "Здравствуйте";
|
||||
let answer = &hello[0];</code></pre>
|
||||
<p>You already know that <code>answer</code> will not be <code>З</code>, the first letter. When encoded
|
||||
in UTF-8, the first byte of <code>З</code> is <code>208</code> and the second is <code>151</code>, so it would
|
||||
seem that <code>answer</code> should in fact be <code>208</code>, but <code>208</code> is not a valid character
|
||||
on its own. Returning <code>208</code> is likely not what a user would want if they asked
|
||||
for the first letter of this string; however, that’s the only data that Rust
|
||||
has at byte index 0. Users generally don’t want the byte value returned, even
|
||||
if the string contains only Latin letters: If <code>&"hi"[0]</code> were valid code that
|
||||
returned the byte value, it would return <code>104</code>, not <code>h</code>.</p>
|
||||
<p>The answer, then, is that to avoid returning an unexpected value and causing
|
||||
bugs that might not be discovered immediately, Rust doesn’t compile this code
|
||||
at all and prevents misunderstandings early in the development process.</p>
|
||||
<!-- Old headings. Do not remove or links may break. -->
|
||||
<p><a id="bytes-and-scalar-values-and-grapheme-clusters-oh-my"></a></p>
|
||||
<h4 id="bytes-scalar-values-and-grapheme-clusters"><a class="header" href="#bytes-scalar-values-and-grapheme-clusters">Bytes, Scalar Values, and Grapheme Clusters</a></h4>
|
||||
<p>Another point about UTF-8 is that there are actually three relevant ways to
|
||||
look at strings from Rust’s perspective: as bytes, scalar values, and grapheme
|
||||
clusters (the closest thing to what we would call <em>letters</em>).</p>
|
||||
<p>If we look at the Hindi word “नमस्ते” written in the Devanagari script, it is
|
||||
stored as a vector of <code>u8</code> values that looks like this:</p>
|
||||
<pre><code class="language-text">[224, 164, 168, 224, 164, 174, 224, 164, 184, 224, 165, 141, 224, 164, 164,
|
||||
224, 165, 135]
|
||||
</code></pre>
|
||||
<p>That’s 18 bytes and is how computers ultimately store this data. If we look at
|
||||
them as Unicode scalar values, which are what Rust’s <code>char</code> type is, those
|
||||
bytes look like this:</p>
|
||||
<pre><code class="language-text">['न', 'म', 'स', '्', 'त', 'े']
|
||||
</code></pre>
|
||||
<p>There are six <code>char</code> values here, but the fourth and sixth are not letters:
|
||||
They’re diacritics that don’t make sense on their own. Finally, if we look at
|
||||
them as grapheme clusters, we’d get what a person would call the four letters
|
||||
that make up the Hindi word:</p>
|
||||
<pre><code class="language-text">["न", "म", "स्", "ते"]
|
||||
</code></pre>
|
||||
<p>Rust provides different ways of interpreting the raw string data that computers
|
||||
store so that each program can choose the interpretation it needs, no matter
|
||||
what human language the data is in.</p>
|
||||
<p>A final reason Rust doesn’t allow us to index into a <code>String</code> to get a
|
||||
character is that indexing operations are expected to always take constant time
|
||||
(O(1)). But it isn’t possible to guarantee that performance with a <code>String</code>,
|
||||
because Rust would have to walk through the contents from the beginning to the
|
||||
index to determine how many valid characters there were.</p>
|
||||
<h3 id="slicing-strings"><a class="header" href="#slicing-strings">Slicing Strings</a></h3>
|
||||
<p>Indexing into a string is often a bad idea because it’s not clear what the
|
||||
return type of the string-indexing operation should be: a byte value, a
|
||||
character, a grapheme cluster, or a string slice. If you really need to use
|
||||
indices to create string slices, therefore, Rust asks you to be more specific.</p>
|
||||
<p>Rather than indexing using <code>[]</code> with a single number, you can use <code>[]</code> with a
|
||||
range to create a string slice containing particular bytes:</p>
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">#![allow(unused)]
|
||||
</span><span class="boring">fn main() {
|
||||
</span>let hello = "Здравствуйте";
|
||||
|
||||
let s = &hello[0..4];
|
||||
<span class="boring">}</span></code></pre>
|
||||
<p>Here, <code>s</code> will be a <code>&str</code> that contains the first 4 bytes of the string.
|
||||
Earlier, we mentioned that each of these characters was 2 bytes, which means
|
||||
<code>s</code> will be <code>Зд</code>.</p>
|
||||
<p>If we were to try to slice only part of a character’s bytes with something like
|
||||
<code>&hello[0..1]</code>, Rust would panic at runtime in the same way as if an invalid
|
||||
index were accessed in a vector:</p>
|
||||
<pre><code class="language-console">$ cargo run
|
||||
Compiling collections v0.1.0 (file:///projects/collections)
|
||||
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.43s
|
||||
Running `target/debug/collections`
|
||||
|
||||
thread 'main' panicked at src/main.rs:4:19:
|
||||
byte index 1 is not a char boundary; it is inside 'З' (bytes 0..2) of `Здравствуйте`
|
||||
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
|
||||
</code></pre>
|
||||
<p>You should use caution when creating string slices with ranges, because doing
|
||||
so can crash your program.</p>
|
||||
<!-- Old headings. Do not remove or links may break. -->
|
||||
<p><a id="methods-for-iterating-over-strings"></a></p>
|
||||
<h3 id="iterating-over-strings"><a class="header" href="#iterating-over-strings">Iterating Over Strings</a></h3>
|
||||
<p>The best way to operate on pieces of strings is to be explicit about whether
|
||||
you want characters or bytes. For individual Unicode scalar values, use the
|
||||
<code>chars</code> method. Calling <code>chars</code> on “Зд” separates out and returns two values of
|
||||
type <code>char</code>, and you can iterate over the result to access each element:</p>
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">#![allow(unused)]
|
||||
</span><span class="boring">fn main() {
|
||||
</span>for c in "Зд".chars() {
|
||||
println!("{c}");
|
||||
}
|
||||
<span class="boring">}</span></code></pre>
|
||||
<p>This code will print the following:</p>
|
||||
<pre><code class="language-text">З
|
||||
д
|
||||
</code></pre>
|
||||
<p>Alternatively, the <code>bytes</code> method returns each raw byte, which might be
|
||||
appropriate for your domain:</p>
|
||||
<pre class="playground"><code class="language-rust edition2024"><span class="boring">#![allow(unused)]
|
||||
</span><span class="boring">fn main() {
|
||||
</span>for b in "Зд".bytes() {
|
||||
println!("{b}");
|
||||
}
|
||||
<span class="boring">}</span></code></pre>
|
||||
<p>This code will print the 4 bytes that make up this string:</p>
|
||||
<pre><code class="language-text">208
|
||||
151
|
||||
208
|
||||
180
|
||||
</code></pre>
|
||||
<p>But be sure to remember that valid Unicode scalar values may be made up of more
|
||||
than 1 byte.</p>
|
||||
<p>Getting grapheme clusters from strings, as with the Devanagari script, is
|
||||
complex, so this functionality is not provided by the standard library. Crates
|
||||
are available on <a href="https://crates.io/">crates.io</a><!-- ignore --> if this is the
|
||||
functionality you need.</p>
|
||||
<!-- Old headings. Do not remove or links may break. -->
|
||||
<p><a id="strings-are-not-so-simple"></a></p>
|
||||
<h3 id="handling-the-complexities-of-strings"><a class="header" href="#handling-the-complexities-of-strings">Handling the Complexities of Strings</a></h3>
|
||||
<p>To summarize, strings are complicated. Different programming languages make
|
||||
different choices about how to present this complexity to the programmer. Rust
|
||||
has chosen to make the correct handling of <code>String</code> data the default behavior
|
||||
for all Rust programs, which means programmers have to put more thought into
|
||||
handling UTF-8 data up front. This trade-off exposes more of the complexity of
|
||||
strings than is apparent in other programming languages, but it prevents you
|
||||
from having to handle errors involving non-ASCII characters later in your
|
||||
development life cycle.</p>
|
||||
<p>The good news is that the standard library offers a lot of functionality built
|
||||
off the <code>String</code> and <code>&str</code> types to help handle these complex situations
|
||||
correctly. Be sure to check out the documentation for useful methods like
|
||||
<code>contains</code> for searching in a string and <code>replace</code> for substituting parts of a
|
||||
string with another string.</p>
|
||||
<p>Let’s switch to something a bit less complex: hash maps!</p>
|
||||
|
||||
</main>
|
||||
|
||||
<nav class="nav-wrapper" aria-label="Page navigation">
|
||||
<!-- Mobile navigation buttons -->
|
||||
<a rel="prev" href="ch08-01-vectors.html" class="mobile-nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
||||
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"/></svg></span>
|
||||
</a>
|
||||
|
||||
<a rel="next prefetch" href="ch08-03-hash-maps.html" class="mobile-nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||||
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z"/></svg></span>
|
||||
</a>
|
||||
|
||||
<div style="clear: both"></div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<nav class="nav-wide-wrapper" aria-label="Page navigation">
|
||||
<a rel="prev" href="ch08-01-vectors.html" class="nav-chapters previous" title="Previous chapter" aria-label="Previous chapter" aria-keyshortcuts="Left">
|
||||
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"/></svg></span>
|
||||
</a>
|
||||
|
||||
<a rel="next prefetch" href="ch08-03-hash-maps.html" class="nav-chapters next" title="Next chapter" aria-label="Next chapter" aria-keyshortcuts="Right">
|
||||
<span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z"/></svg></span>
|
||||
</a>
|
||||
</nav>
|
||||
|
||||
</div>
|
||||
|
||||
<template id=fa-eye><span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM432 256c0 79.5-64.5 144-144 144s-144-64.5-144-144s64.5-144 144-144s144 64.5 144 144zM288 192c0 35.3-28.7 64-64 64c-11.5 0-22.3-3-31.6-8.4c-.2 2.8-.4 5.5-.4 8.4c0 53 43 96 96 96s96-43 96-96s-43-96-96-96c-2.8 0-5.6 .1-8.4 .4c5.3 9.3 8.4 20.1 8.4 31.6z"/></svg></span></template>
|
||||
<template id=fa-eye-slash><span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c5.2-11.8 8-24.8 8-38.5c0-53-43-96-96-96c-2.8 0-5.6 .1-8.4 .4c5.3 9.3 8.4 20.1 8.4 31.6c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zm223.1 298L373 389.9c-16.4 6.5-34.3 10.1-53 10.1c-79.5 0-144-64.5-144-144c0-6.9 .5-13.6 1.4-20.2L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5z"/></svg></span></template>
|
||||
<template id=fa-copy><span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M502.6 70.63l-61.25-61.25C435.4 3.371 427.2 0 418.7 0H255.1c-35.35 0-64 28.66-64 64l.0195 256C192 355.4 220.7 384 256 384h192c35.2 0 64-28.8 64-64V93.25C512 84.77 508.6 76.63 502.6 70.63zM464 320c0 8.836-7.164 16-16 16H255.1c-8.838 0-16-7.164-16-16L239.1 64.13c0-8.836 7.164-16 16-16h128L384 96c0 17.67 14.33 32 32 32h47.1V320zM272 448c0 8.836-7.164 16-16 16H63.1c-8.838 0-16-7.164-16-16L47.98 192.1c0-8.836 7.164-16 16-16H160V128H63.99c-35.35 0-64 28.65-64 64l.0098 256C.002 483.3 28.66 512 64 512h192c35.2 0 64-28.8 64-64v-32h-47.1L272 448z"/></svg></span></template>
|
||||
<template id=fa-play><span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M73 39c-14.8-9.1-33.4-9.4-48.5-.9S0 62.6 0 80V432c0 17.4 9.4 33.4 24.5 41.9s33.7 8.1 48.5-.9L361 297c14.3-8.7 23-24.2 23-41s-8.7-32.2-23-41L73 39z"/></svg></span></template>
|
||||
<template id=fa-clock-rotate-left><span class=fa-svg><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.2.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2022 Fonticons, Inc. --><path d="M75 75L41 41C25.9 25.9 0 36.6 0 57.9V168c0 13.3 10.7 24 24 24H134.1c21.4 0 32.1-25.9 17-41l-30.8-30.8C155 85.5 203 64 256 64c106 0 192 86 192 192s-86 192-192 192c-40.8 0-78.6-12.7-109.7-34.4c-14.5-10.1-34.4-6.6-44.6 7.9s-6.6 34.4 7.9 44.6C151.2 495 201.7 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C185.3 0 121.3 28.7 75 75zm181 53c-13.3 0-24 10.7-24 24V256c0 6.4 2.5 12.5 7 17l72 72c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-65-65V152c0-13.3-10.7-24-24-24z"/></svg></span></template>
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
window.playground_copyable = true;
|
||||
</script>
|
||||
|
||||
|
||||
<script src="elasticlunr-ef4e11c1.min.js"></script>
|
||||
<script src="mark-09e88c2c.min.js"></script>
|
||||
<script src="searcher-09f2665d.js"></script>
|
||||
|
||||
<script src="clipboard-1626706a.min.js"></script>
|
||||
<script src="highlight-abc7f01d.js"></script>
|
||||
<script src="book-c22b7243.js"></script>
|
||||
|
||||
<!-- Custom JS scripts -->
|
||||
<script src="ferris-2317480c.js"></script>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user