// Dart语言类型测试运算符is
void main() { 
   int n = 2; 
   print(n is int); 
   //print(n is string); 
}