doucan4815 2019-08-05 12:45
浏览 42
已采纳

如何将整数和nill数组转换为字符串? [关闭]

Let's say I have array with integer and nil elements:

[15698, nil, 13000, 560365, nil]

I want to convert this array to string where each element separated by ,.

[15698, null, 13000, 560365, null]

I tried next code but it return 0 instead of null. How to fix it?

func ConvertIntArrayToString(input []int) string {
    if len(input) == 0 {
        return ""
    }
    estimate := len(input) * 4
    b := make([]byte, 0, estimate)
    for _, n := range input {
        b = strconv.AppendInt(b, int64(n), 10)
        b = append(b, ',')
    }
    b = b[:len(b)-1]
    return string(b)
}

Here is how I created array:

type NilInt struct {
    value int
    null  bool
}

func (n *NilInt) Value() interface{} {
    if n.null {
        return nil
    }
    return n.value
}

func NewInt(x int) NilInt {
    return NilInt{x, false}
}

func NewNil() NilInt {
    return NilInt{0, true}
}

var x = []utils.NilInt{utils.NewNil(), utils.NewInt(10), utils.NewNil(), utils.NewInt(5)}]

var result strings.Builder

for _, n := range x {
    if n.Value() == nil {
        result.WriteString("null,")
    } else {
        result.WriteString(??? + ",")
    }
}

fmt.Println(result)
  • 写回答

1条回答 默认 最新

  • douken0530 2019-08-05 13:50
    关注

    As pointed out in the comments by others, an int slice ([]int) cannot contain nil values because it is illegal to assign nil to a variable of a type whose specified zero value is not nil.

    If you need a slice that can hold int values and nils you can use []interface{}. Then, to construct the desired string you can simply marshal such a slice with the encoding/json package.

    var a = []interface{}{15698, nil, 13000, 560365, nil}
    b, err := json.Marshal(a)
    if err != nil {
        panic(err)
    }
    fmt.Println(string(b))
    

    https://play.golang.com/p/hEjTFIoJlXj

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 Matlab打开默认名称带有/的光谱数据
  • ¥50 easyExcel模板 动态单元格合并列
  • ¥15 res.rows如何取值使用
  • ¥15 在odoo17开发环境中,怎么实现库存管理系统,或独立模块设计与AGV小车对接?开发方面应如何设计和开发?请详细解释MES或WMS在与AGV小车对接时需完成的设计和开发
  • ¥15 CSP算法实现EEG特征提取,哪一步错了?
  • ¥15 游戏盾如何溯源服务器真实ip?需要30个字。后面的字是凑数的
  • ¥15 vue3前端取消收藏的不会引用collectId
  • ¥15 delphi7 HMAC_SHA256方式加密
  • ¥15 关于#qt#的问题:我想实现qcustomplot完成坐标轴
  • ¥15 下列c语言代码为何输出了多余的空格