3
任何人都可以解釋在Dart中使用註釋嗎?dart lang中的自定義註釋/元數據
在文檔,我發現這個例子:
library todo;
class todo {
final String who;
final String what;
const todo(this.who, this.what);
}
其次
import 'todo.dart';
@todo('seth', 'make this do something')
void doSomething() {
print('do something');
}
所以,我拿什麼主write()方法來獲得執行DoSomething的()函數?
感謝
我肯定在尋找這樣的事情。謝謝! – Fallenreaper 2016-09-21 21:24:29
如果代碼在瀏覽器中運行,則應考慮使用可反射的包來獲取代碼大小的原因。 – 2016-09-22 05:12:17