2013-06-29 07:24:17 +04:00
|
|
|
---
|
2013-06-29 19:52:41 +04:00
|
|
|
language: dart
|
2013-06-30 07:19:14 +04:00
|
|
|
filename: learndart.dart
|
2013-07-04 09:59:13 +04:00
|
|
|
contributors:
|
2020-01-16 06:15:29 +03:00
|
|
|
- ["Joao Pedrosa", "https://github.com/jpedrosa/"]
|
|
|
|
- ["Vince Ramces Oliveros", "https://github.com/ram231"]
|
2013-06-29 07:24:17 +04:00
|
|
|
---
|
|
|
|
|
2020-04-27 17:55:02 +03:00
|
|
|
**Dart** is a single threaded, general purpose programming language.
|
2020-01-16 08:43:49 +03:00
|
|
|
It borrows a lot from other mainstream languages.
|
|
|
|
It supports Streams, Futures(known as Promises in JavaScript), Generics, First-class functions(closures) and static type checking.
|
2020-02-06 15:07:13 +03:00
|
|
|
Dart can run in any platform such as Web, CLI, Desktop, Mobile and IoT devices.
|
2013-06-29 07:24:17 +04:00
|
|
|
|
2020-01-16 08:43:49 +03:00
|
|
|
Dart's most controversial feature is its ~~Optional Typing~~ Static Type safety and [Sound Type checks](https://dart.dev/guides/language/sound-dart).
|
2013-06-29 07:24:17 +04:00
|
|
|
|
2017-01-01 02:25:24 +03:00
|
|
|
```dart
|
2013-06-29 07:24:17 +04:00
|
|
|
import "dart:collection";
|
2020-01-16 06:15:29 +03:00
|
|
|
import "dart:math" as math;
|
|
|
|
|
|
|
|
/// Welcome to Learn Dart in 15 minutes. http://dart.dev/
|
|
|
|
/// This is an executable tutorial. You can run it with Dart or on
|
|
|
|
/// the Try Dart! site if you copy/paste it there. http://dartpad.dev/
|
|
|
|
/// You can also run Flutter in DartPad by click the `< > New Pad ` and choose Flutter
|
2020-01-16 08:43:49 +03:00
|
|
|
|
|
|
|
|
|
|
|
/// In Dart, Everything is an Object.
|
|
|
|
/// Every declaration of an object is an instance of Null and
|
|
|
|
/// Null is also an object.
|
|
|
|
|
|
|
|
|
|
|
|
/// 3 Types of comments in dart
|
|
|
|
// Single line comment
|
|
|
|
/**
|
|
|
|
* Multi-line comment
|
|
|
|
* Can comment more than 2 lines
|
|
|
|
*/
|
|
|
|
/// Code doc comment
|
|
|
|
/// It uses markdown syntax to generate code docs when making an API.
|
|
|
|
/// Code doc comment is the recommended choice when documenting your APIs, classes and methods.
|
|
|
|
|
|
|
|
/// 4 types of variable declaration.
|
|
|
|
/// Constants are variables that are immutable cannot be change or altered.
|
|
|
|
/// `const` in dart should practice SCREAMING_SNAKE_CASE name declaration.
|
|
|
|
const CONSTANT_VALUE = "I CANNOT CHANGE";
|
|
|
|
CONSTANT_VALUE = "DID I?"; //Error
|
|
|
|
/// Final is another variable declaration that cannot be change once it has been instantiated. Commonly used in classes and functions
|
|
|
|
/// `final` can be declared in pascalCase.
|
2023-09-04 09:50:19 +03:00
|
|
|
final finalValue = "value cannot be changed once instantiated";
|
2020-01-16 08:43:49 +03:00
|
|
|
finalValue = "Seems not"; //Error
|
|
|
|
|
|
|
|
/// `var` is another variable declaration that is mutable and can change its value. Dart will infer types and will not change its data type
|
|
|
|
var mutableValue = "Variable string";
|
|
|
|
mutableValue = "this is valid";
|
|
|
|
mutableValue = false; // Error.
|
|
|
|
|
|
|
|
/// `dynamic` is another variable declaration in which the type is not evaluated by the dart static type checking.
|
|
|
|
/// It can change its value and data type.
|
|
|
|
/// Some dartisans uses dynamic cautiously as it cannot keep track of its data type. so use it at your own risk
|
|
|
|
dynamic dynamicValue = "I'm a string";
|
|
|
|
dynamicValue = false; // false
|
|
|
|
|
|
|
|
|
|
|
|
/// Functions can be declared in a global space
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Function declaration and method declaration look the same. Function
|
|
|
|
/// declarations can be nested. The declaration takes the form of
|
|
|
|
/// name() {} or name() => singleLineExpression;
|
2020-01-16 08:43:49 +03:00
|
|
|
/// The fat arrow function declaration can be an implicit or
|
|
|
|
/// explicit return for the result of the expression.
|
|
|
|
/// Dart will execute a function called `main()` anywhere in the dart project.
|
|
|
|
///
|
2013-06-29 07:24:17 +04:00
|
|
|
example1() {
|
2018-12-27 15:43:24 +03:00
|
|
|
nested1() {
|
|
|
|
nested2() => print("Example1 nested 1 nested 2");
|
|
|
|
nested2();
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2018-12-27 15:43:24 +03:00
|
|
|
nested1();
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
|
2022-01-03 19:07:35 +03:00
|
|
|
/// Anonymous functions don't include a name
|
2013-06-29 07:24:17 +04:00
|
|
|
example2() {
|
2022-01-03 19:07:35 +03:00
|
|
|
nested1(fn) {
|
2013-06-29 07:24:17 +04:00
|
|
|
fn();
|
|
|
|
}
|
2018-12-27 15:43:24 +03:00
|
|
|
nested1(() => print("Example2 nested 1"));
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// When a function parameter is declared, the declaration can include the
|
2020-01-16 08:43:49 +03:00
|
|
|
/// number of parameters the function takes by explicitly specifying the names of the
|
2020-01-16 06:15:29 +03:00
|
|
|
/// parameters it takes.
|
2013-06-29 07:24:17 +04:00
|
|
|
example3() {
|
2020-01-16 08:43:49 +03:00
|
|
|
planA(fn(String informSomething)) {
|
2018-12-27 15:43:24 +03:00
|
|
|
fn("Example3 plan A");
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
planB(fn) {
|
|
|
|
// Or don't declare number of parameters.
|
2013-06-29 07:24:17 +04:00
|
|
|
fn("Example3 plan B");
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2018-12-27 15:43:24 +03:00
|
|
|
planA((s) => print(s));
|
|
|
|
planB((s) => print(s));
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Functions have closure access to outer variables.
|
2020-01-16 08:43:49 +03:00
|
|
|
/// Dart will infer types when the variable has a value of something.
|
|
|
|
/// In this example dart knows that this variable is a String.
|
2013-06-29 07:24:17 +04:00
|
|
|
var example4Something = "Example4 nested 1";
|
|
|
|
example4() {
|
2018-12-27 15:43:24 +03:00
|
|
|
nested1(fn(informSomething)) {
|
2013-06-29 07:24:17 +04:00
|
|
|
fn(example4Something);
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2018-12-27 15:43:24 +03:00
|
|
|
nested1((s) => print(s));
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Class declaration with a sayIt method, which also has closure access
|
|
|
|
/// to the outer variable as though it were a function as seen before.
|
2013-06-29 07:24:17 +04:00
|
|
|
var example5method = "Example5 sayIt";
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example5Class {
|
|
|
|
sayIt() {
|
|
|
|
print(example5method);
|
|
|
|
}
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
example5() {
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Create an anonymous instance of the Example5Class and call the sayIt
|
|
|
|
/// method on it.
|
2020-01-16 08:43:49 +03:00
|
|
|
/// the `new` keyword is optional in Dart.
|
2013-06-29 07:24:17 +04:00
|
|
|
new Example5Class().sayIt();
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Class declaration takes the form of class name { [classBody] }.
|
|
|
|
/// Where classBody can include instance methods and variables, but also
|
|
|
|
/// class methods and variables.
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example6Class {
|
2018-12-27 15:43:24 +03:00
|
|
|
var instanceVariable = "Example6 instance variable";
|
2013-06-29 07:24:17 +04:00
|
|
|
sayIt() {
|
2018-12-27 15:43:24 +03:00
|
|
|
print(instanceVariable);
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
example6() {
|
2020-01-16 08:43:49 +03:00
|
|
|
Example6Class().sayIt();
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Class methods and variables are declared with "static" terms.
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example7Class {
|
2018-12-27 15:43:24 +03:00
|
|
|
static var classVariable = "Example7 class variable";
|
2013-06-29 07:24:17 +04:00
|
|
|
static sayItFromClass() {
|
2018-12-27 15:43:24 +03:00
|
|
|
print(classVariable);
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
sayItFromInstance() {
|
2018-12-27 15:43:24 +03:00
|
|
|
print(classVariable);
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
example7() {
|
|
|
|
Example7Class.sayItFromClass();
|
|
|
|
new Example7Class().sayItFromInstance();
|
|
|
|
}
|
|
|
|
|
2020-01-16 08:43:49 +03:00
|
|
|
/// Dart supports Generics.
|
|
|
|
/// Generics refers to the technique of writing the code for a class
|
|
|
|
/// without specifying the data type(s) that the class works on.
|
|
|
|
/// Source: https://stackoverflow.com/questions/4560890/what-are-generics-in-c
|
|
|
|
|
|
|
|
/// Type `T` refers to any type that has been instantiated
|
|
|
|
/// you can call whatever you want
|
|
|
|
/// Programmers uses the convention in the following
|
|
|
|
/// T - Type(used for class and primitype types)
|
|
|
|
/// E - Element(used for List, Set, or Iterable)
|
|
|
|
/// K,V - Key Value(used for Map)
|
|
|
|
class GenericExample<T>{
|
|
|
|
void printType(){
|
|
|
|
print("$T")
|
|
|
|
}
|
|
|
|
// methods can also have generics
|
|
|
|
genericMethod<M>(){
|
|
|
|
print("class:$T, method: $M");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// List are similar to arrays but list is a child of Iterable<E>
|
|
|
|
/// Therefore Maps, List, LinkedList are all child of Iterable<E> to be able to loop using the keyword `for`
|
|
|
|
/// Important things to remember:
|
|
|
|
/// () - Iterable<E>
|
|
|
|
/// [] - List<E>
|
|
|
|
/// {} - Map<K,V>
|
|
|
|
|
|
|
|
|
|
|
|
/// List are great, but there's a restriction for what List can be
|
|
|
|
/// outside of function/method bodies. List on the outer scope of class
|
2020-01-16 06:15:29 +03:00
|
|
|
/// or outside of class have to be constant. Strings and numbers are constant
|
|
|
|
/// by default. But arrays and maps are not. They can be made constant by
|
2020-01-16 08:43:49 +03:00
|
|
|
/// declaring them "const". Kind of similar to Javascript's Object.freeze()
|
2020-03-10 13:44:54 +03:00
|
|
|
const example8List = ["Example8 const array"];
|
2020-01-16 08:43:49 +03:00
|
|
|
const example8Map = {"someKey": "Example8 const map"};
|
|
|
|
/// Declare List or Maps as Objects.
|
|
|
|
List<String> explicitList = new List<String>();
|
|
|
|
Map<String,dynamic> explicitMaps = new Map<String,dynamic>();
|
|
|
|
|
|
|
|
explicitList.add("SomeArray");
|
2013-06-29 07:24:17 +04:00
|
|
|
example8() {
|
2018-12-27 15:43:24 +03:00
|
|
|
print(example8Map["someKey"]);
|
2020-01-16 08:43:49 +03:00
|
|
|
print(explicitList[0]);
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
|
2020-01-16 08:43:49 +03:00
|
|
|
/// Assigning a list from one variable to another will not be the same result.
|
|
|
|
/// Because dart is pass-reference-by-value.
|
|
|
|
/// So when you assign an existing list to a new variable.
|
|
|
|
/// Instead of List, it becomes an Iterable
|
|
|
|
var iterableExplicitList = explicitList;
|
|
|
|
print(iterableExplicitList) // ("SomeArray"); "[]" becomes "()"
|
|
|
|
var newExplicitLists = explicitList.toList() // Converts Iterable<E> to List<E>
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Loops in Dart take the form of standard for () {} or while () {} loops,
|
|
|
|
/// slightly more modern for (.. in ..) {}, or functional callbacks with many
|
2020-01-16 08:43:49 +03:00
|
|
|
/// supported features, starting with forEach,map and where.
|
2018-12-27 15:43:24 +03:00
|
|
|
var example9Array = const ["a", "b"];
|
2013-06-29 07:24:17 +04:00
|
|
|
example9() {
|
2020-03-10 13:50:04 +03:00
|
|
|
for (int i = 0; i < example9Array.length; i++) {
|
2018-12-27 15:43:24 +03:00
|
|
|
print("Example9 for loop '${example9Array[i]}'");
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
var i = 0;
|
2018-12-27 15:43:24 +03:00
|
|
|
while (i < example9Array.length) {
|
|
|
|
print("Example9 while loop '${example9Array[i]}'");
|
2013-06-29 07:24:17 +04:00
|
|
|
i++;
|
|
|
|
}
|
2020-01-16 08:43:49 +03:00
|
|
|
for (final e in example9Array) {
|
2013-06-29 07:24:17 +04:00
|
|
|
print("Example9 for-in loop '${e}'");
|
|
|
|
}
|
2020-01-16 08:43:49 +03:00
|
|
|
|
2018-12-27 15:43:24 +03:00
|
|
|
example9Array.forEach((e) => print("Example9 forEach loop '${e}'"));
|
2020-01-16 08:43:49 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// To loop over the characters of a string or to extract a substring.
|
2018-12-27 15:43:24 +03:00
|
|
|
var example10String = "ab";
|
2013-06-29 07:24:17 +04:00
|
|
|
example10() {
|
2018-12-27 15:43:24 +03:00
|
|
|
for (var i = 0; i < example10String.length; i++) {
|
|
|
|
print("Example10 String character loop '${example10String[i]}'");
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
2018-12-27 15:43:24 +03:00
|
|
|
for (var i = 0; i < example10String.length; i++) {
|
|
|
|
print("Example10 substring loop '${example10String.substring(i, i + 1)}'");
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-16 08:43:49 +03:00
|
|
|
/// `int`, `double` and `num` are the three supported number formats.
|
|
|
|
/// `num` can be either `int` or `double`.
|
|
|
|
/// `int` and `double` are children of type `num`
|
2013-06-29 07:24:17 +04:00
|
|
|
example11() {
|
|
|
|
var i = 1 + 320, d = 3.2 + 0.01;
|
2020-01-16 08:43:49 +03:00
|
|
|
num myNumDouble = 2.2;
|
|
|
|
num myNumInt = 2;
|
|
|
|
int myInt = 1;
|
|
|
|
double myDouble = 0; // Dart will add decimal prefix, becomes 0.0;
|
|
|
|
myNumDouble = myInt; // valid
|
|
|
|
myNumDouble = myDouble; //valid
|
|
|
|
myNumDouble = myNumInt; //valid
|
|
|
|
|
|
|
|
myNumInt = myInt; // valid
|
|
|
|
myNumInt = myDouble; // valid
|
|
|
|
myNumInt = myNumDouble; // valid
|
|
|
|
|
|
|
|
myInt = myNumDouble; //Error
|
|
|
|
myInt = myDouble; //Error
|
|
|
|
myInt = myNumInt; //valid
|
|
|
|
|
|
|
|
myDouble = myInt; //error
|
|
|
|
myDouble = myNumInt; //valid
|
|
|
|
myDouble = myNumDouble; //valid
|
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
print("Example11 int ${i}");
|
|
|
|
print("Example11 double ${d}");
|
2020-01-16 08:43:49 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// DateTime provides date/time arithmetic.
|
2013-06-29 07:24:17 +04:00
|
|
|
example12() {
|
|
|
|
var now = new DateTime.now();
|
|
|
|
print("Example12 now '${now}'");
|
|
|
|
now = now.add(new Duration(days: 1));
|
|
|
|
print("Example12 tomorrow '${now}'");
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Regular expressions are supported.
|
2013-06-29 07:24:17 +04:00
|
|
|
example13() {
|
|
|
|
var s1 = "some string", s2 = "some", re = new RegExp("^s.+?g\$");
|
|
|
|
match(s) {
|
|
|
|
if (re.hasMatch(s)) {
|
|
|
|
print("Example13 regexp matches '${s}'");
|
|
|
|
} else {
|
|
|
|
print("Example13 regexp doesn't match '${s}'");
|
|
|
|
}
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
match(s1);
|
|
|
|
match(s2);
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Boolean expressions support implicit conversions and dynamic type
|
2013-06-29 07:24:17 +04:00
|
|
|
example14() {
|
2018-11-07 09:29:27 +03:00
|
|
|
var a = true;
|
|
|
|
if (a) {
|
|
|
|
print("true, a is $a");
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
2018-11-07 09:29:27 +03:00
|
|
|
a = null;
|
|
|
|
if (a) {
|
|
|
|
print("true, a is $a");
|
|
|
|
} else {
|
2020-01-16 06:15:29 +03:00
|
|
|
print("false, a is $a"); /// runs here
|
2018-11-07 09:29:27 +03:00
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// dynamic typed null can be convert to bool
|
|
|
|
var b;/// b is dynamic type
|
2018-11-07 09:29:27 +03:00
|
|
|
b = "abc";
|
2013-06-29 07:24:17 +04:00
|
|
|
try {
|
2018-11-07 09:29:27 +03:00
|
|
|
if (b) {
|
|
|
|
print("true, b is $b");
|
2013-06-29 07:24:17 +04:00
|
|
|
} else {
|
2018-11-07 09:29:27 +03:00
|
|
|
print("false, b is $b");
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
} catch (e) {
|
2020-01-16 06:15:29 +03:00
|
|
|
print("error, b is $b"); /// this could be run but got error
|
2018-11-07 09:29:27 +03:00
|
|
|
}
|
|
|
|
b = null;
|
|
|
|
if (b) {
|
|
|
|
print("true, b is $b");
|
|
|
|
} else {
|
2020-01-16 06:15:29 +03:00
|
|
|
print("false, b is $b"); /// runs here
|
2018-11-07 09:29:27 +03:00
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// statically typed null can not be convert to bool
|
2018-11-07 09:29:27 +03:00
|
|
|
var c = "abc";
|
|
|
|
c = null;
|
2020-01-16 06:15:29 +03:00
|
|
|
/// complie failed
|
|
|
|
/// if (c) {
|
|
|
|
/// print("true, c is $c");
|
|
|
|
/// } else {
|
|
|
|
/// print("false, c is $c");
|
|
|
|
/// }
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// try/catch/finally and throw are used for exception handling.
|
|
|
|
/// throw takes any object as parameter;
|
2013-06-29 07:24:17 +04:00
|
|
|
example15() {
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
throw "Some unexpected error.";
|
|
|
|
} catch (e) {
|
2013-06-29 07:56:37 +04:00
|
|
|
print("Example15 an exception: '${e}'");
|
2020-01-16 06:15:29 +03:00
|
|
|
throw e; /// Re-throw
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
print("Example15 catch exception being re-thrown: '${e}'");
|
|
|
|
} finally {
|
|
|
|
print("Example15 Still run finally");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// To be efficient when creating a long string dynamically, use
|
|
|
|
/// StringBuffer. Or you could join a string array.
|
2013-06-29 07:24:17 +04:00
|
|
|
example16() {
|
|
|
|
var sb = new StringBuffer(), a = ["a", "b", "c", "d"], e;
|
2019-10-27 20:41:50 +03:00
|
|
|
for (e in a) {
|
|
|
|
sb.write(e);
|
|
|
|
}
|
2013-06-29 07:24:17 +04:00
|
|
|
print("Example16 dynamic string created with "
|
2019-10-27 20:41:50 +03:00
|
|
|
"StringBuffer '${sb.toString()}'");
|
2013-06-29 07:24:17 +04:00
|
|
|
print("Example16 join string array '${a.join()}'");
|
|
|
|
}
|
|
|
|
|
2020-01-16 08:43:49 +03:00
|
|
|
/// Strings can be concatenated by just having string List next to
|
2020-01-16 06:15:29 +03:00
|
|
|
/// one another with no further operator needed.
|
2020-01-16 08:43:49 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
example17() {
|
|
|
|
print("Example17 "
|
|
|
|
"concatenate "
|
|
|
|
"strings "
|
|
|
|
"just like that");
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Strings have single-quote or double-quote for delimiters with no
|
|
|
|
/// actual difference between the two. The given flexibility can be good
|
|
|
|
/// to avoid the need to escape content that matches the delimiter being
|
|
|
|
/// used. For example, double-quotes of HTML attributes if the string
|
|
|
|
/// contains HTML content.
|
2013-06-29 07:24:17 +04:00
|
|
|
example18() {
|
|
|
|
print('Example18 <a href="etc">'
|
|
|
|
"Don't can't I'm Etc"
|
|
|
|
'</a>');
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Strings with triple single-quotes or triple double-quotes span
|
|
|
|
/// multiple lines and include line delimiters.
|
2013-06-29 07:24:17 +04:00
|
|
|
example19() {
|
2015-10-08 06:11:24 +03:00
|
|
|
print('''Example19 <a href="etc">
|
2013-06-29 07:24:17 +04:00
|
|
|
Example19 Don't can't I'm Etc
|
|
|
|
Example19 </a>''');
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Strings have the nice interpolation feature with the $ character.
|
|
|
|
/// With $ { [expression] }, the return of the expression is interpolated.
|
|
|
|
/// $ followed by a variable name interpolates the content of that variable.
|
|
|
|
/// $ can be escaped like so \$ to just add it to the string instead.
|
2013-06-29 07:24:17 +04:00
|
|
|
example20() {
|
|
|
|
var s1 = "'\${s}'", s2 = "'\$s'";
|
|
|
|
print("Example20 \$ interpolation ${s1} or $s2 works.");
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Optional types allow for the annotation of APIs and come to the aid of
|
|
|
|
/// IDEs so the IDEs can better refactor, auto-complete and check for
|
|
|
|
/// errors. So far we haven't declared any types and the programs have
|
|
|
|
/// worked just fine. In fact, types are disregarded during runtime.
|
|
|
|
/// Types can even be wrong and the program will still be given the
|
|
|
|
/// benefit of the doubt and be run as though the types didn't matter.
|
|
|
|
/// There's a runtime parameter that checks for type errors which is
|
|
|
|
/// the checked mode, which is said to be useful during development time,
|
|
|
|
/// but which is also slower because of the extra checking and is thus
|
|
|
|
/// avoided during deployment runtime.
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example21 {
|
|
|
|
List<String> _names;
|
|
|
|
Example21() {
|
2015-10-08 06:11:24 +03:00
|
|
|
_names = ["a", "b"];
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
List<String> get names => _names;
|
|
|
|
set names(List<String> list) {
|
|
|
|
_names = list;
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
int get length => _names.length;
|
|
|
|
void add(String name) {
|
|
|
|
_names.add(name);
|
|
|
|
}
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
void example21() {
|
|
|
|
Example21 o = new Example21();
|
|
|
|
o.add("c");
|
|
|
|
print("Example21 names '${o.names}' and length '${o.length}'");
|
|
|
|
o.names = ["d", "e"];
|
|
|
|
print("Example21 names '${o.names}' and length '${o.length}'");
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Class inheritance takes the form of class name extends AnotherClassName {}.
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example22A {
|
|
|
|
var _name = "Some Name!";
|
|
|
|
get name => _name;
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example22B extends Example22A {}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
example22() {
|
|
|
|
var o = new Example22B();
|
|
|
|
print("Example22 class inheritance '${o.name}'");
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Class mixin is also available, and takes the form of
|
|
|
|
/// class name extends SomeClass with AnotherClassName {}.
|
|
|
|
/// It's necessary to extend some class to be able to mixin another one.
|
|
|
|
/// The template class of mixin cannot at the moment have a constructor.
|
|
|
|
/// Mixin is mostly used to share methods with distant classes, so the
|
|
|
|
/// single inheritance doesn't get in the way of reusable code.
|
|
|
|
/// Mixins follow the "with" statement during the class declaration.
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example23A {}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example23Utils {
|
|
|
|
addTwo(n1, n2) {
|
|
|
|
return n1 + n2;
|
|
|
|
}
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example23B extends Example23A with Example23Utils {
|
|
|
|
addThree(n1, n2, n3) {
|
|
|
|
return addTwo(n1, n2) + n3;
|
|
|
|
}
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
example23() {
|
2019-10-27 20:41:50 +03:00
|
|
|
var o = new Example23B(), r1 = o.addThree(1, 2, 3), r2 = o.addTwo(1, 2);
|
2013-06-29 07:24:17 +04:00
|
|
|
print("Example23 addThree(1, 2, 3) results in '${r1}'");
|
|
|
|
print("Example23 addTwo(1, 2) results in '${r2}'");
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// The Class constructor method uses the same name of the class and
|
|
|
|
/// takes the form of SomeClass() : super() {}, where the ": super()"
|
|
|
|
/// part is optional and it's used to delegate constant parameters to the
|
|
|
|
/// super-parent's constructor.
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example24A {
|
|
|
|
var _value;
|
|
|
|
Example24A({value: "someValue"}) {
|
|
|
|
_value = value;
|
|
|
|
}
|
|
|
|
get value => _value;
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example24B extends Example24A {
|
|
|
|
Example24B({value: "someOtherValue"}) : super(value: value);
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
example24() {
|
2019-10-27 20:41:50 +03:00
|
|
|
var o1 = new Example24B(), o2 = new Example24B(value: "evenMore");
|
2013-06-29 07:24:17 +04:00
|
|
|
print("Example24 calling super during constructor '${o1.value}'");
|
|
|
|
print("Example24 calling super during constructor '${o2.value}'");
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// There's a shortcut to set constructor parameters in case of simpler classes.
|
|
|
|
/// Just use the this.parameterName prefix and it will set the parameter on
|
|
|
|
/// an instance variable of same name.
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example25 {
|
|
|
|
var value, anotherValue;
|
|
|
|
Example25({this.value, this.anotherValue});
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
example25() {
|
|
|
|
var o = new Example25(value: "a", anotherValue: "b");
|
|
|
|
print("Example25 shortcut for constructor '${o.value}' and "
|
2019-10-27 20:41:50 +03:00
|
|
|
"'${o.anotherValue}'");
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Named parameters are available when declared between {}.
|
|
|
|
/// Parameter order can be optional when declared between {}.
|
|
|
|
/// Parameters can be made optional when declared between [].
|
2013-06-29 07:24:17 +04:00
|
|
|
example26() {
|
|
|
|
var _name, _surname, _email;
|
|
|
|
setConfig1({name, surname}) {
|
|
|
|
_name = name;
|
|
|
|
_surname = surname;
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
setConfig2(name, [surname, email]) {
|
|
|
|
_name = name;
|
|
|
|
_surname = surname;
|
|
|
|
_email = email;
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
setConfig1(surname: "Doe", name: "John");
|
|
|
|
print("Example26 name '${_name}', surname '${_surname}', "
|
2019-10-27 20:41:50 +03:00
|
|
|
"email '${_email}'");
|
2013-06-29 07:24:17 +04:00
|
|
|
setConfig2("Mary", "Jane");
|
|
|
|
print("Example26 name '${_name}', surname '${_surname}', "
|
2019-10-27 20:41:50 +03:00
|
|
|
"email '${_email}'");
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Variables declared with final can only be set once.
|
|
|
|
/// In case of classes, final instance variables can be set via constant
|
|
|
|
/// constructor parameter.
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example27 {
|
|
|
|
final color1, color2;
|
2020-01-16 06:15:29 +03:00
|
|
|
/// A little flexibility to set final instance variables with syntax
|
|
|
|
/// that follows the :
|
2013-06-29 07:24:17 +04:00
|
|
|
Example27({this.color1, color2}) : color2 = color2;
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
example27() {
|
|
|
|
final color = "orange", o = new Example27(color1: "lilac", color2: "white");
|
|
|
|
print("Example27 color is '${color}'");
|
|
|
|
print("Example27 color is '${o.color1}' and '${o.color2}'");
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// To import a library, use import "libraryPath" or if it's a core library,
|
|
|
|
/// import "dart:libraryName". There's also the "pub" package management with
|
|
|
|
/// its own convention of import "package:packageName".
|
|
|
|
/// See import "dart:collection"; at the top. Imports must come before
|
|
|
|
/// other code declarations. IterableBase comes from dart:collection.
|
2013-06-29 07:24:17 +04:00
|
|
|
class Example28 extends IterableBase {
|
|
|
|
var names;
|
|
|
|
Example28() {
|
|
|
|
names = ["a", "b"];
|
|
|
|
}
|
|
|
|
get iterator => names.iterator;
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
example28() {
|
|
|
|
var o = new Example28();
|
|
|
|
o.forEach((name) => print("Example28 '${name}'"));
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// For control flow we have:
|
|
|
|
/// * standard switch with must break statements
|
|
|
|
/// * if-else if-else and ternary ..?..:.. operator
|
|
|
|
/// * closures and anonymous functions
|
|
|
|
/// * break, continue and return statements
|
2013-06-29 07:24:17 +04:00
|
|
|
example29() {
|
|
|
|
var v = true ? 30 : 60;
|
|
|
|
switch (v) {
|
|
|
|
case 30:
|
|
|
|
print("Example29 switch statement");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (v < 30) {
|
|
|
|
} else if (v > 30) {
|
|
|
|
} else {
|
|
|
|
print("Example29 if-else statement");
|
|
|
|
}
|
|
|
|
callItForMe(fn()) {
|
|
|
|
return fn();
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
rand() {
|
|
|
|
v = new DM.Random().nextInt(50);
|
|
|
|
return v;
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
while (true) {
|
|
|
|
print("Example29 callItForMe(rand) '${callItForMe(rand)}'");
|
|
|
|
if (v != 30) {
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Never gets here.
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Parse int, convert double to int, or just keep int when dividing numbers
|
|
|
|
/// by using the ~/ operation. Let's play a guess game too.
|
2013-06-29 07:24:17 +04:00
|
|
|
example30() {
|
2019-10-27 20:41:50 +03:00
|
|
|
var gn,
|
|
|
|
tooHigh = false,
|
|
|
|
n,
|
|
|
|
n2 = (2.0).toInt(),
|
|
|
|
top = int.parse("123") ~/ n2,
|
|
|
|
bottom = 0;
|
2013-06-29 07:24:17 +04:00
|
|
|
top = top ~/ 6;
|
2020-01-16 06:15:29 +03:00
|
|
|
gn = new DM.Random().nextInt(top + 1); /// +1 because nextInt top is exclusive
|
2013-06-29 07:24:17 +04:00
|
|
|
print("Example30 Guess a number between 0 and ${top}");
|
|
|
|
guessNumber(i) {
|
|
|
|
if (n == gn) {
|
|
|
|
print("Example30 Guessed right! The number is ${gn}");
|
|
|
|
} else {
|
|
|
|
tooHigh = n > gn;
|
|
|
|
print("Example30 Number ${n} is too "
|
2019-10-27 20:41:50 +03:00
|
|
|
"${tooHigh ? 'high' : 'low'}. Try again");
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
return n == gn;
|
|
|
|
}
|
2019-10-27 20:41:50 +03:00
|
|
|
|
2013-06-29 07:24:17 +04:00
|
|
|
n = (top - bottom) ~/ 2;
|
|
|
|
while (!guessNumber(n)) {
|
|
|
|
if (tooHigh) {
|
|
|
|
top = n - 1;
|
|
|
|
} else {
|
|
|
|
bottom = n + 1;
|
|
|
|
}
|
|
|
|
n = bottom + ((top - bottom) ~/ 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Optional Positional Parameter:
|
|
|
|
/// parameter will be disclosed with square bracket [ ] & square bracketed parameter are optional.
|
2019-10-11 17:59:26 +03:00
|
|
|
example31() {
|
2019-10-11 19:58:57 +03:00
|
|
|
findVolume31(int length, int breath, [int height]) {
|
2019-10-11 17:59:26 +03:00
|
|
|
print('length = $length, breath = $breath, height = $height');
|
|
|
|
}
|
|
|
|
|
2019-10-11 19:58:57 +03:00
|
|
|
findVolume31(10,20,30); //valid
|
|
|
|
findVolume31(10,20); //also valid
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Optional Named Parameter:
|
|
|
|
/// parameter will be disclosed with curly bracket { }
|
|
|
|
/// curly bracketed parameter are optional.
|
|
|
|
/// have to use parameter name to assign a value which separated with colan :
|
|
|
|
/// in curly bracketed parameter order does not matter
|
|
|
|
/// these type parameter help us to avoid confusion while passing value for a function which has many parameter.
|
2019-10-11 19:58:57 +03:00
|
|
|
example32() {
|
|
|
|
findVolume32(int length, int breath, {int height}) {
|
|
|
|
print('length = $length, breath = $breath, height = $height');
|
|
|
|
}
|
|
|
|
|
|
|
|
findVolume32(10,20,height:30);//valid & we can see the parameter name is mentioned here.
|
|
|
|
findVolume32(10,20);//also valid
|
|
|
|
}
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Optional Default Parameter:
|
|
|
|
/// same like optional named parameter in addition we can assign default value for this parameter.
|
|
|
|
/// which means no value is passed this default value will be taken.
|
2019-10-11 19:58:57 +03:00
|
|
|
example33() {
|
|
|
|
findVolume33(int length, int breath, {int height=10}) {
|
|
|
|
print('length = $length, breath = $breath, height = $height');
|
2020-01-16 06:15:29 +03:00
|
|
|
}
|
2019-10-11 19:58:57 +03:00
|
|
|
|
|
|
|
findVolume33(10,20,height:30);//valid
|
2020-01-16 06:15:29 +03:00
|
|
|
findVolume33(10,20);//valid
|
2019-10-11 17:59:26 +03:00
|
|
|
}
|
|
|
|
|
2020-01-16 08:52:33 +03:00
|
|
|
/// Dart has also added feature such as Null aware operators
|
|
|
|
var isBool = true;
|
|
|
|
var hasString = isBool ?? "default String";
|
|
|
|
|
2020-01-16 06:15:29 +03:00
|
|
|
/// Programs have only one entry point in the main function.
|
|
|
|
/// Nothing is expected to be executed on the outer scope before a program
|
|
|
|
/// starts running with what's in its main function.
|
|
|
|
/// This helps with faster loading and even lazily loading of just what
|
|
|
|
/// the program needs to startup with.
|
2013-06-29 07:24:17 +04:00
|
|
|
main() {
|
|
|
|
print("Learn Dart in 15 minutes!");
|
2019-10-27 20:41:50 +03:00
|
|
|
[
|
|
|
|
example1, example2, example3, example4, example5,
|
|
|
|
example6, example7, example8, example9, example10,
|
|
|
|
example11, example12, example13, example14, example15,
|
|
|
|
example16, example17, example18, example19, example20,
|
|
|
|
example21, example22, example23, example24, example25,
|
|
|
|
example26, example27, example28, example29,
|
|
|
|
example30 // Adding this comment stops the dart formatter from putting all items on a new line
|
|
|
|
].forEach((ef) => ef());
|
2013-06-29 07:24:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
## Further Reading
|
|
|
|
|
2015-11-01 00:16:39 +03:00
|
|
|
Dart has a comprehensive web-site. It covers API reference, tutorials, articles and more, including a
|
2022-01-03 19:20:24 +03:00
|
|
|
useful DartPad (a cloud-based Dart coding playground).
|
|
|
|
[https://dart.dev/](https://dart.dev)
|
|
|
|
[https://dartpad.dev/](https://dartpad.dev)
|