我是Flutter的新手,我想知道(对我来说)在如何转换我的变量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';
String s = "45";
int i = int.parse(s);
int j = 45;
String t = "$j";
//如果后者看起来很奇怪,请查看https://dartlang.org上的字符串插值