Files
2024-09-27 02:06:13 +08:00

70 lines
1.7 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
body {
width: 1100px;
margin: 0 auto;
}
.father {
width: 604px;
}
.father li {
margin-bottom: 43px;
}
</style>
</head>
<body>
<h1>
Dart语法学习
</h1>
<h2>
目录
</h2>
<ul>
<li>参考资料</li>
<li>语言特性</li>
<li>关键字</li>
<li>变量与常量</li>
</ul>
<h2>
参考资料
</h2>
<ul>
<li>
<a href="https://www.dartlang.org/guides/language/language-tour">https://www.dartlang.org/guides/language/language-tour</a>
【官方文档】
</li>
<li>
<a href="http://wiki.jikexueyuan.com/project/dart-language-tour/classes.html">http://wiki.jikexueyuan.com/project/dart-language-tour/classes.html</a>
【极客学院】
</li>
<li>
<a href="https://www.jianshu.com/p/3d927a7bf020">https://www.jianshu.com/p/3d927a7bf020</a>
【authorAWeiLoveAndroid】
</li>
</ul>
<h2>
语言特性
</h2>
<ul class="father">
<li>Dart所有的东西都是对象 即使是数字numbers、函数function、null也都是对象所有的对象都继承自Object类。</li>
<li>Dart所有的东西都是对象 即使是数字numbers、函数function、null也都是对象所有的对象都继承自Object类。</li>
<li>Dart所有的东西都是对象 即使是数字numbers、函数function、null也都是对象所有的对象都继承自Object类。</li>
</ul>
</body>
</html>