Python、Ruby、JavaScript では、ポインターの動作が異なります。囲碁よりも。 Go のガベージ コレクターはメモリを自動的に解放するため、メモリ消費を最適化し、不必要なガベージの作成を防ぐためにポインタの使用法を理解することが不可欠です。
タグが関連付けられた画像のデータセット。各タグを対応する画像 URL のリストにマップするデータ構造を作成することを目的としています。
<code class="python">{ "ocean": [ "https://c8.staticflickr.com/4/3707/11603200203_87810ddb43_o.jpg" ], "water": [ "https://c8.staticflickr.com/4/3707/11603200203_87810ddb43_o.jpg", "https://c3.staticflickr.com/1/48/164626048_edeca27ed7_o.jpg" ], ... }</code>
このマッピングを表す 1 つの方法は、ポインターを使用することです。画像構造体の URL フィールド:
<code class="go">tagToUrlMap := make(map[string][]*string) for _, image := range result { for _, tag := range image.Tags { tagToUrlMap[tag.Name] = append(tagToUrlMap[tag.Name], &image.URL) } }</code>
結果:
代替アプローチ中間変数を使用し、その変数へのポインタを格納します。
<code class="go">tagToUrlMap := make(map[string][]*string) for _, image := range result { imageUrl = image.URL for _, tag := range image.Tags { tagToUrlMap[tag.Name] = append(tagToUrlMap[tag.Name], &imageUrl) } }</code>
結果:
別のオプションは次のとおりです。画像構造体の文字列へのポインタを使用します:
<code class="go">type Image struct { URL *string Description string Tags []*Tag }</code>
考慮事項:
メモリ効率の最適な解決策は、一意の文字列値のインスタンスを 1 つだけ確保する文字列インターニングを使用することです。
<code class="go">var cache = map[string]string{} func interned(s string) string { if s2, ok := cache[s]; ok { return s2 } cache[s] = s return s }</code>
実装:
<code class="go">tagToUrlMap := make(map[string][]string) for _, image := range result { imageURL := interned(image.URL) for _, tag := range image.Tags { tagName := interned(tag.Name) tagToUrlMap[tagName] = append(tagToUrlMap[tagName], imageURL) } }</code>
以上がGo でポインターやガベージ コレクションを使用する場合、メモリ使用量を効果的に管理し、ガベージの生成を防ぐにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。