gpt4 book ai didi

Dart将int变量转换为字符串

转载 作者:IT王子 更新时间:2023-10-29 06:35:27 26 4
gpt4 key购买 nike

我正在尝试转换一个整型变量

var int counter = 0;

变成一个字符串变量

var String $counter = "0";

我搜索过,但我只找到类似的东西

var myInt = int.parse('12345');

这不适用于

var myInt = int.parse(counter);

最佳答案

使用toString 和/或toRadixString

  int intValue = 1;
String stringValue = intValue.toString();
String hexValue = intValue.toRadixString(16);

或者,如评论中所述

  String anotherValue = 'the value is $intValue';

关于Dart将int变量转换为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54954182/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com