[Dart] Functions with return data type

 

[Ko]

 - 사용자 정의 함수를 호출해서 결과물을 사용하기 위해서는 void 함수가 아닌 특정 data type 결과물(output) return하는 함수로 정의해야 .

 - void abc(int a) {…a…}

 - void 대신 output data type 명시하고, 사용되어질 결과물 앞에는 return으로 marking .

 - int abc(int a) {

…a…

return a..a..

}

 

=========================================================================

 

[En]

 - In order to use the result by calling a user-defined function, it must be defined as a function that returns the output of a specific data type, not a void function.
 - void abc (int a) {… a… }
 - Specify the output data type instead of void, and mark the result to be used as return.

 - int abc(int a) {

…a…

return a..a..

}

'플러터(Flutter) > 다트(Dart)' 카테고리의 다른 글

[Dart] List  (0) 2020.03.18
[Dart] Arrow Functions  (0) 2020.03.18
[Dart] Functions with argument  (0) 2020.03.18
[Dart] Data Types  (0) 2020.03.18
[Dart] Variables  (0) 2020.03.18

+ Recent posts