错误:将非类型化字符串转换为字符串指针
将非类型化字符串常量作为参数传递给需要字符串指针的函数会导致以下错误:
cannot convert (untyped string constant) to *string [duplicate]
问题
提供的代码中的 StorageClassName 参数需要一个指向字符串的指针。但是,提供的值“manual”是一个无类型字符串常量。
解决方案
要解决此问题,您不能直接传递字符串常量作为参数。相反,您必须首先声明一个字符串变量并将字符串常量分配给它。然后,您可以使用 & 运算符将变量的地址作为指针参数传递。
// Declare a string local and assign the constant string literal to it manualStr := "manual" // Pass the address of the local variable as the parameter argument persistentvolumeclaim := &apiv1.PersistentVolumeClaim{ ObjectMeta: metav1.ObjectMeta{ Name: "mysql-pv-claim", }, Spec: apiv1.PersistentVolumeClaimSpec{ StorageClassName: &manualStr, }, }
通过遵循这种方法,您可以成功地将必要的字符串指针作为参数传递给函数。
以上是如何将非类型化字符串常量传递给需要字符串指针的函数?的详细内容。更多信息请关注PHP中文网其他相关文章!