Click here to Skip to main content
15,878,945 members
Articles / Programming Languages / Dart

DART2 Prima Plus - Tutorial 1

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
9 Jul 2018CPOL6 min read 14.4K   4   3
This is getting started beginner tutorial in DART 2, I would be touching Basic setup, Datatypes, Conditional Statements and Loops.

Introduction

I would be wrong in saying DART is new emerging phenomena in today's ever-changing programming world, as promised in this article, I would be letting you know more about DART language. For this article, I am taking liberty copying some common text from DART official website, as those information, that are constant like type of keywords or Build-in types. To make this article compliant with rules, I will make sure proper attributions are given.

This is the first article of this series. Hopefully, more would be coming within a few weeks.

Installation

You would require DART SDK and one code editing tool of your choice for writing the code, I prefer Visual Studio Code as it's lightweight and if you install Flutter and Dart extension, which has in built support for Dart (as Flutter base language for coding is Dart), it also provides feature like intellisense, etc.

For installing DART SDK, you can follow steps mentioned at [link], if you are concentrating only on DART; you just need to download Flutter SDK, Dart SDK in at this path bin\cache\dart-sdk.

For installing Flutter and Dart extension in Visual Studio Code, open command palette either by selecting View->Command Palette option or Ctrl+Shift+P, once searchbar appears, you need to write Extensions: Install Extensions. Search for Flutter & Dart separately and install it. Do this step, once you have already unzipped DART SDK in your PC.

In case you wouldn’t want to install anything, DART team come up with DartPad, where you could write small programs to check your logic. For this tutorial, you can easily write and compile your code with DartPad.

Basic Structure

Dart language has almost all features and programming constructs inbuilt to code interruptly, its fully Object Orient Programming language with syntax structure similar to C++, C#. The whole language specification is available here. From the PDF, I could extract more relevant definition of Dart.

Quote:

Dart is a class-based, single-inheritance, pure object-oriented programming language. Dart is optionally typed (19) and supports reified generics. The runtime type of every object is represented as an instance of class Type which can be obtained by calling the getter runtimeType declared in class Object, the root of the Dart class hierarchy

Before creating your first program, you should be aware of two things, first type of keyword available and inbuilt datatypes:

abstract do import super
as dynamic in switch
assert else interface sync*
async enum is this
async* export library throw
await external mixin true
break extends new try
case factory null typedef
catch false operator var
class final part void
const finally rethrow while
continue for return with
covariant get set yield
default if static yield*
deferred implements    

Inbuild Datatypes

  • numbers
  • strings
  • booleans
  • lists (also known as arrays)
  • maps
  • runes (for expressing Unicode characters in a string)
  • symbols

Tutorial Scope

Though DART is a complete language with lot of features and functionality, for this article, I am limiting my scope, and would be discussing these points only:

  1. TASK#1 Basic program creation
  2. TASK#2 Usage of basic datatypes which includes numbers, strings and enums. List and Map would have their own article
  3. TASK#3 IF ELSE and SWITCH
  4. TASK#4 Looping using for, while, do-while

Project Creation

Though if you installed IntelliJ Idea from JetBrain, it provides inbuilt template for creating Dart console application, otherwise creation of DART based project is very simple. Please follow these steps. I am using Visual Studio Code as my coding editor.

  1. Create a folder in your computer where you want to create your project, folder name would be name of the project.
  2. Create two folders inside your project folder by name bin and lib. (Please make sure name of folder is in lower case.)
    • bin folder would contain your code files
    • lib folder would contain files you want to use around the project, I would come back to this point further in the article
  3. Create a new file in root of project folder by name pubspec.yaml, and add the following code inside it:
    name: darttutorial1
    description: New Tutorial series for Dart
    
    • here name corresponds to name of project, for keeping it simple, you can use project folder name here
    • here description corresponds to basic information about project
  4. Once you save pubspec.yaml file, Studio automatically creates pubspec.lock and .package file in root folder.

    Image 1

  5. Now you are ready to do Rock and Roll.

Using the Code

Task # 1 Basic Program Creation

  1. Like C++, entry point for Dart program is also main() function
  2. Now add main.dart file in bin folder by right clicking on folder and clicking on New File & name it as main.dart.
  3. Add the following code in file:
    C++
    void main()
    {
      print ('Hello Dart');
    }

    Image 2

  4. print function used to print whatever is supplied into debug console terminal
  5. If everything is setup correctly, if you Ctrl+F5, you can see 'Hello Dart' coming in output terminal, to open DEBUG CONSOLE terminal in your VS Code, use CTRL + ` (Back Tick)
  6. So we reached end of Task#1.

TASK#2 Usage of Basic datatypes which Includes numbers, strings and booleans

Note (From Dart website): Everything you can place in a variable is an object, and every object is an instance of a class. Even numbers, functions, and null are objects. All objects inherit from the Object class. Uninitialized variables have an initial value of null. Even variables with numeric types are initially null.

  1. Let's check basic datatypes, first being numbers, main constituent for same are int (for integer value ranges from -263 to 263 - 1) and double (for floating values). They both are subtype of num object.
  2. Let's do some stuff for int and double, I will make sure that the code is self explanatory.
    C++
    void main()
    {
      print ('testing integer functionality');
      int myInt = 4;
      myInt += 10;
      assert(myInt == 14);// Should not throw error
    
      print ('testing double functionality');
      double myDob = 4.2;
      myDob += 10.2;
      assert(myDob == 14.4);// Should not throw error 
      
      print ('integer and double test passed');
    }	   

    Image 3

  3. Now let's focus on Enums, enums are similar to what we have in C++/C#, they are named const identifier, which automatically assigns Zero to first enum, then increment accordingly.
  4. Let's do some programming with enums:
    C++
    enum NaturalNumbers { Zero,One,Two }
    
    void main()
    {
      print(NaturalNumbers.Zero);
      assert(NaturalNumbers.Zero.index == 0);// Should not throw error
      print(NaturalNumbers.One);
      assert(NaturalNumbers.One.index == 1);// Should not throw error
      print(NaturalNumbers.Two);
      assert(NaturalNumbers.Two.index == 2);// Should not throw error
    }

    Image 4

  5. Last but most important String, please note down, 'S' is capital in String, if you use lower case, Dart compiler would not recognize the syntax. String is used to manipulate and store text. We can use both single quote (') and double quote (") to store text.
  6. Let's do some programming using String:
    C++
    void main()
    {
      String name = "Dart Language";
      String usage = " Used in Mobile, Web and Virtual Machine";
      print(name+usage);
    
      // should not throw error
      assert(name+usage == 'Dart Language Used in Mobile, Web and Virtual Machine');
    
      //-- string interpolation
      var name1 = "${name} is next emerging language";
      print(name1);
      assert(name1 == 'Dart Language is next emerging language'); // should not throw error
    }

    Image 5

  7. Converting between types, use toString() to convert any number to String and use parse function to convert from String to number (example taken from Dart Site):
    C++
    // String -> int
    var one = int.parse('1');
    assert(one == 1);
    
    // String -> double
    var onePointOne = double.parse('1.1');
    assert(onePointOne == 1.1);
    
    // int -> String
    String oneAsString = 1.toString();
    assert(oneAsString == '1');
    
    // double -> String
    String piAsString = 3.14159.toStringAsFixed(2);
    assert(piAsString == '3.14');	
  8. So we reached the end of Task#2.

TASK#3 IF ELSE and SWITCH

IF-ELSE statement is used where we need to choose one choice between two choices, i.e., outcome is either TRUE or FALSE. We use SWITCH in case we need to choose one choice from multiple choices, and all choices are generally known in advance. Let's write the program to check both functionalities:

C++
enum NaturalNumbers { Zero,One,Two,Three }

void main()
{
  bool DoYouLiveOnEarth = true;

  // Check for TRUE condition
  if(DoYouLiveOnEarth)
     print("Yes I live on Earth");

   print('Moved to Mars by tesla ');
   DoYouLiveOnEarth = false;

  // Check for FALSE condition
   if(DoYouLiveOnEarth == false)
     print("no Moved to Mars");

  NaturalNumbers naturalNumbers = NaturalNumbers.Two;
// Check for Switch condition, here we set naturalNumbers = NaturalNumbers.Two
  switch (naturalNumbers) {
    case NaturalNumbers.Zero:  print("you are using ${naturalNumbers}"); break;
    case NaturalNumbers.One:  print("you are using ${naturalNumbers}"); break;
    case NaturalNumbers.Two:  print("you are using ${naturalNumbers}"); break;
    case NaturalNumbers.Three:  print("you are using ${naturalNumbers}"); break;
    default: break;
  }  
}

Image 6

So we reached end of Task#3.

TASK#4 Looping using for, while, do-while

For loop is executed where end conditions are generally known in advance, it provides readymade solution for incrementing and decrementing the variable on which For loop is running, and in case of while loop, we don't know the end result in advance, based on logic written inside the block. Let me write a small program to check their usage in Dart.

C++
void main()
{
  print("For loop");
  // print hello 3 times
  for(int i=0;i<3;i++){
    print("Hello ${i}");
  }

  // this also print hello 3 times
  print("WHILE loop");
  int i=0;
  bool breakCondition = false;
  while(breakCondition== false)
  {
    print("Hello ${i}");    
    // set breakCondition to TRUE, for completing the 
    // loop when value of i reached 3
    if(++i>=3) breakCondition = true;
  }   
}

Image 7

So we reached the end of Task#4 and the end of this tutorial. Do let me know if you have any questions by posting in linked messageboard.

Though there is no download available for this article, you can still clone my github project for the same here.

Points of Interest

Flutter Tutorial

  1. Flutter Getting Started: Tutorial #1
  2. Flutter Getting Started: Tutorial 2 - StateFulWidget

DART Series

  1. DART2 Prima Plus - Tutorial 2 - LIST

History

  • 05-July-2018 - First version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
India India
He used to have biography here Smile | :) , but now he will hire someone (for free offcourse Big Grin | :-D ), Who writes his biography on his behalf Smile | :)

He is Great Fan of Mr. Johan Rosengren (his idol),Lim Bio Liong, Nishant S and DavidCrow and Believes that, he will EXCEL in his life by following there steps!!!

He started with Visual C++ then moved to C# then he become language agnostic, you give him task,tell him the language or platform, he we start immediately, if he knows the language otherwise he quickly learn it and start contributing productively

Last but not the least, For good 8 years he was Visual CPP MSMVP!

Comments and Discussions

 
QuestionA Couple of Questions Pin
Member 104156115-Jul-18 18:07
Member 104156115-Jul-18 18:07 
AnswerRe: A Couple of Questions Pin
ThatsAlok5-Jul-18 19:34
ThatsAlok5-Jul-18 19:34 
GeneralRe: A Couple of Questions Pin
Member 104156116-Jul-18 18:25
Member 104156116-Jul-18 18:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.