Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

dart

Flutter(Dart)int型 string型変換する方法

結論から

string型からint型へ変換

(2021/12/22現在の情報です)

string型をint型に変換する際はint.parseを使います。
※import文は不要です。

プログラム例)

string  str_test = "1";
int      int_test = 0;
int_test = int.parse(int_test);

結果)
int_testに1がセットされます。

int型からstring型へ変換

int型をstring型に変換する際はto.String()を使います。
※こちらももちろんimport文は不要です。

プログラム例)

string  str_test = "0";
int      int_test = 1;
str_test = int_test.toString();

結果)

str_testに”1″がセットされます

補足

string型をint型に変換する際に
 Math.parseInt()
を使用している情報が散見されますが、現在のバージョンでは使用不可になりました。



Flutterは急速にバージョンが上がっていき、下位互換も保証しなくこともよくありますので、
上手くいかないと思ったら、対応のバージョンで保証されているかを確認することをお勧めします。

0
広告




関連記事