logo
  • 教程列表
  • SO官方文檔
  • 庫
    • 使用庫
    • 庫和知名度
    • 指定庫字首
    • 僅匯入庫的一部分
    • 懶惰地載入一個庫
  1. StackOverflow 文件
  2. dart 教程
  3. 庫
  4. 僅匯入庫的一部分

僅匯入庫的一部分

Created: November-22, 2018

如果只想使用庫的一部分,則可以有選擇地匯入庫。例如:

// Import only foo and bar.
import 'package:lib1/lib1.dart' show foo, bar;

// Import all names EXCEPT foo.
import 'package:lib2/lib2.dart' hide foo;
  • 懶惰地載入一個庫
  • 指定庫字首

Copyright © 2018. All right reserved

tastones.com 备案号:鲁ICP备18045372号-1

  • 關於本站
  • 免責聲明