Skip to content

Instantly share code, notes, and snippets.

@freedive-cebu30
Last active January 25, 2020 06:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save freedive-cebu30/cc0b0ca404c3c4992dc43e72adc387c4 to your computer and use it in GitHub Desktop.
Save freedive-cebu30/cc0b0ca404c3c4992dc43e72adc387c4 to your computer and use it in GitHub Desktop.
// 抽象クラスをインスタンス化はできません
// 下記のコードはエラーが出ます
void main() {
var shape = Shape();
}
abstract class Shape {
double area();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment