Flutter将int变量转换为string

问题描述 投票:0回答:2

我是Flutter的新手,我想知道(对我来说)在如何转换我的变量var int counter = 0时有多困难;变量var String $ counter =“0”;

我搜索了很多但是更多我只发现了像var myInt = int.parse('12345');

这与var myInt = int.parse(counter)不起作用;

特别感谢您的建议

dart flutter
2个回答
8
投票

使用toString和/或toRadixString

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

或者,如在评论中

  String anotherValue = 'the value is $intValue';

2
投票

//字符串到int

String s = "45";
int i = int.parse(s);

// int到String

int j = 45;
String t = "$j";

//如果后者看起来很奇怪,请查看https://dartlang.org上的字符串插值

© www.soinside.com 2019 - 2024. All rights reserved.