理解 无法将(无类型字符串常量)转换为 字符串*
当尝试将字符串常量分配给如果参数需要指向字符串的指针,例如 PersistentVolumeClaim 中的 StorageClassName 参数,则可能会导致编译器错误。此错误消息表明编译器无法将字符串常量(非类型化常量)转换为指向字符串的指针。
解决问题
解决此问题问题,您需要使用字符串局部变量,为其分配常量字符串值,然后使用 & 运算符传递该局部变量的地址。下面是更正后的代码:
<code class="go">persistentvolumeclaim := &apiv1.PersistentVolumeClaim{ ObjectMeta: metav1.ObjectMeta{ Name: "mysql-pv-claim", }, Spec: apiv1.PersistentVolumeClaimSpec{ // 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. StorageClassName: &manualStr, }, }</code>
通过进行此更改,您可以使用常量字符串的值创建一个类型化字符串变量,然后可以将其作为指向字符串的指针传递,因为它是对一个字符串变量。这正确满足了 StorageClassName 参数的类型要求。
以上是为什么不能将非类型化字符串常量转换为字符串指针?的详细内容。更多信息请关注PHP中文网其他相关文章!