How to check if a map is empty in Golang?

030 :

When the following code:

if map == nil {
    log.Fatal("map is empty")
}

is run, the log statement is not executed, while fmt.Println(map) indicates that the map is empty:

map[]
jacob :

You can use len:

if len(map) == 0 {
    ....
}

From https://golang.org/ref/spec#Length_and_capacity

len(s) map[K]T map length (number of defined keys)

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How to check for an empty Map in a Soy template?

分類Dev

How to check is Recyclerviews is empty

分類Dev

How to check if OleDbDataReader is empty?

分類Dev

How to check if listbox is empty?

分類Dev

How to check ARGF is empty or not in Ruby

分類Dev

How to check if a variable is empty in tcl

分類Dev

How to check if a tensor is empty in Tensorflow

分類Dev

how to golang check a variable is nil

分類Dev

How to check if a Map is also a Struct?

分類Dev

How to check if all my textfields are empty JavaFX

分類Dev

Python: How to check if two lists are not empty

分類Dev

How to check if variable is Null or empty in XSLT?

分類Dev

Jquery - How to check if all inputs in a div are not empty?

分類Dev

How to check if an element is an empty list in pandas?

分類Dev

How to check if a partition is empty in c++

分類Dev

how to check wordpress custom table is empty or not

分類Dev

how to check if a cell is empty in openpyxl python

分類Dev

How to differentiate empty string and nothing in a map

分類Dev

How can an empty Map be created in Sass?

分類Dev

How golang map of struct as keytype work?

分類Dev

How to parse a JSON into a map with variable type in Golang

分類Dev

How to change value of empty interface that pass as struct reference in golang?

分類Dev

Empty Interfaces in Golang

分類Dev

How to check if a specific textbox under a specific div is empty

分類Dev

How do I check for a condition before writing an empty file in Python?

分類Dev

How to check in Servlet if request.getParameterValues has empty data

分類Dev

how to check for an empty .csv extension file in C#

分類Dev

how to check if a row is checked and a specific cell is empty using jquery?

分類Dev

How to check if all folder and sub-folder are not empty?

Related 関連記事

  1. 1

    How to check for an empty Map in a Soy template?

  2. 2

    How to check is Recyclerviews is empty

  3. 3

    How to check if OleDbDataReader is empty?

  4. 4

    How to check if listbox is empty?

  5. 5

    How to check ARGF is empty or not in Ruby

  6. 6

    How to check if a variable is empty in tcl

  7. 7

    How to check if a tensor is empty in Tensorflow

  8. 8

    how to golang check a variable is nil

  9. 9

    How to check if a Map is also a Struct?

  10. 10

    How to check if all my textfields are empty JavaFX

  11. 11

    Python: How to check if two lists are not empty

  12. 12

    How to check if variable is Null or empty in XSLT?

  13. 13

    Jquery - How to check if all inputs in a div are not empty?

  14. 14

    How to check if an element is an empty list in pandas?

  15. 15

    How to check if a partition is empty in c++

  16. 16

    how to check wordpress custom table is empty or not

  17. 17

    how to check if a cell is empty in openpyxl python

  18. 18

    How to differentiate empty string and nothing in a map

  19. 19

    How can an empty Map be created in Sass?

  20. 20

    How golang map of struct as keytype work?

  21. 21

    How to parse a JSON into a map with variable type in Golang

  22. 22

    How to change value of empty interface that pass as struct reference in golang?

  23. 23

    Empty Interfaces in Golang

  24. 24

    How to check if a specific textbox under a specific div is empty

  25. 25

    How do I check for a condition before writing an empty file in Python?

  26. 26

    How to check in Servlet if request.getParameterValues has empty data

  27. 27

    how to check for an empty .csv extension file in C#

  28. 28

    how to check if a row is checked and a specific cell is empty using jquery?

  29. 29

    How to check if all folder and sub-folder are not empty?

ホットタグ

アーカイブ