指针在Go编程语言或Golang中, 是一个变量, 用于存储另一个变量的内存地址。 Golang中的指针也称为特殊变量。变量用于在系统中的特定内存地址存储一些数据。始终以十六进制格式找到内存地址(以0x开头, 如0xFFAAF等)。
在指针中, 你可以借助len()函数来找到指针的长度。此函数是一个内置函数, 即使指定的指针为nil, 也将指向数组的指针中存在的元素总数返回。此函数在内置中定义。
语法如下:
func len(l Type) int
在这里, 类型升是一个指针。让我们借助给定的示例来讨论这个概念:
例子:
//Go program to illustrate how to find the
//length of the pointer to an array
package mainimport (
"fmt"
)//Main function
func main() {//Creating and initializing
//pointer to array
//Using var keyword
var ptr1 [6]* int
var ptr2 [3]*string
var ptr3 [4]*float64//Finding the length of
//the pointer to array
//Using len function
fmt.Println( "Length of ptr1: " , len(ptr1))
fmt.Println( "Length of ptr2: " , len(ptr2))
fmt.Println( "Length of ptr3: " , len(ptr3))}
【如何在Golang中找到指针的长度()】输出如下:
Length of ptr1:6
Length of ptr2:3
Length of ptr3:4
示例2:
//Go program to illustrate how to find
//the length of the pointer to an array
package mainimport (
"fmt"
)//Main function
func main() {//Creating an array
arr := [6] int {200, 300, 400, 500, 600, 700}var x int//Creating pointer
var p [4]* int//Assigning the address
for x = 0;
x <
len(p);
x++ {p[x] = &
arr[x]
}//Displaying result
for x = 0;
x <
len(p);
x++ {fmt.Printf( "Value of p[%d] = %d\n" , x, *p[x])
}//Finding length
//Using len() function
fmt.Println( "Length of arr: " , len(arr))
fmt.Println( "Length of p: " , len(p))
}
输出如下:
Value of p[0] = 200
Value of p[1] = 300
Value of p[2] = 400
Value of p[3] = 500
Length of arr:6
Length of p:4
推荐阅读
- 如何在C#中查找StringBuilder的长度()
- 如何在C#中查找数组的长度()
- 什么是SEO文章(你为什么要写呢?以及如何写?)
- SEO关键词(如何选择更好的关键词进行优化())
- 如何在Python中获取类属性列表()
- 如何在Linux中安装Scala(详细步骤图解)
- 如何为C#安装和设置Visual Studio(步骤图解)
- 如何安装Android虚拟设备(AVD)(详细图解步骤)
- Linux基础篇-8MySQL与PHP安装与配置