Dart Programming – Syntax

  • Post author:
  • Post category:Dart
  • Post comments:0 Comments
dart programming syntax

In this guide, we will discuss Dart Programming Syntax. Syntax defines a set of rules for writing programs. Every language specification defines its own syntax. A Dart program is composed of βˆ’

  • Variables and Operators
  • Classes
  • Functions
  • Expressions and Programming Constructs
  • Decision Making and Looping Constructs
  • Comments
  • Libraries and Packages
  • Typedefs
  • Data structures represented as Collections / Generics

Your First Dart Code

Let us start with the traditional β€œHello World” example βˆ’

main() { 
   print("Hello World!"); 
}

The main() function is a predefined method in Dart. This method acts as the entry point to the application. A Dart script needs the main() method for execution. print() is a predefined function that prints the specified string or value to the standard output i.e. the terminal.

The output of the above code will be βˆ’

Hello World!

Execute a Dart Program

You can execute a Dart program in two ways βˆ’

  • Via the terminal
  • Via the WebStorm IDE

Via the Terminal

To execute a Dart program via the terminal βˆ’

  • Navigate to the path of the current project
  • Type the following command in the Terminal window
dart file_name.dart

Via the WebStorm IDE

To execute a Dart program via the WebStorm IDE βˆ’

  • Right-click the Dart script file on the IDE. (The file should contain the main() function to enable execution)
  • Click on the β€˜Run <file_name>’ option. A screenshot of the same is given below βˆ’
run test1 dart

One can alternatively click the Run Button button or use the shortcut Ctrl+Shift+F10 to execute the Dart Script.

Dart Command-Line Options

Dart command-line options are used to modify Dart Script execution. Common commandline options for Dart include the following βˆ’

Sr.NoCommand-Line Option & Description
1-c or –c
Enables both assertions and type checks (checked mode).
2–version
Displays VM version information.
3–packages <path>
Specifies the path to the package resolution configuration file.
4-p <path>
Specifies where to find imported libraries. This option cannot be used with –packages.
5-h or –help
Displays help.

Enabling Checked Mode

Dart programs run in two modes namely βˆ’

  • Checked Mode
  • Production Mode (Default)

It is recommended to run the Dart VM in checked mode during development and testing, since it adds warnings and errors to aid development and debugging process. The checked mode enforces various checks like type-checking etc. To turn on the checked mode, add the -c or –-checked option before the script-file name while running the script.

However, to ensure performance benefit while running the script, it is recommended to run the script in the production mode.

Consider the following Test.dart script file βˆ’

void main() { 
   int n = "hello"; 
   print(n); 
} 

Run the script by entering βˆ’

dart Test.dart

Though there is a type-mismatch the script executes successfully as the checked mode is turned off. The script will result in the following output βˆ’

hello

Now try executing the script with the “- – checked” or the “-c” option βˆ’

dart -c Test.dart 

Or,

dart - - checked Test.dart

The Dart VM will throw an error stating that there is a type mismatch.

Unhandled exception: 
type 'String' is not a subtype of type 'int' of 'n' where 
   String is from dart:core 
   int is from dart:core 
#0  main (file:///C:/Users/Administrator/Desktop/test.dart:3:9) 
#1  _startIsolate.<anonymous closure> (dart:isolate-patch/isolate_patch.dart :261) 
#2  _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:148)

Identifiers in Dart

Identifiers are names given to elements in a program like variables, functions etc. The rules for identifiers are βˆ’

Identifiers can include both, characters and digits. However, the identifier cannot begin with a digit.

  • Identifiers cannot include special symbols except for underscore (_) or a dollar sign ($).
  • Identifiers cannot be keywords.
  • They must be unique.
  • Identifiers are case-sensitive.
  • Identifiers cannot contain spaces.

The following tables lists a few examples of valid and invalid identifiers βˆ’

Valid identifiersInvalid identifiers
firstNameVar
first_namefirst name
num1first-name
$result1number

Keywords in Dart

Keywords have a special meaning in the context of a language. The following table lists some keywords in Dart.

abstract 1continuefalsenewthis
as 1defaultfinalnullthrow
assertdeferred 1finallyoperator 1true
async 2doforpart 1try
async* 2dynamic 1get 1rethrowtypedef 1
await 2elseifreturnvar
breakenumimplements 1set 1void
caseexport 1import 1static 1while
catchexternal 1insuperwith
classextendsisswitchyield 2
constfactory 1library 1sync* 2yield* 2

Whitespace and Line Breaks

Dart ignores spaces, tabs, and newlines that appear in programs. You can use spaces, tabs, and newlines freely in your program and you are free to format and indent your programs in a neat and consistent way that makes the code easy to read and understand.

Dart is Case-sensitive

Dart is case-sensitive. This means that Dart differentiates between uppercase and lowercase characters.

Statements end with a Semicolon

Each line of instruction is called a statement. Each dart statement must end with a semicolon (;). A single line can contain multiple statements. However, these statements must be separated by a semicolon.

Comments in Dart

Comments are a way to improve the readability of a program. Comments can be used to include additional information about a program like author of the code, hints about a function/ construct etc. Comments are ignored by the compiler.

Dart supports the following types of comments βˆ’

  • Single-line comments ( // ) βˆ’ Any text between a “//” and the end of a line is treated as a comment
  • Multi-line comments (/* */) βˆ’ These comments may span multiple lines.

Example

// this is single line comment  
  
/* This is a   
   Multi-line comment  
*/ 

Object-Oriented Programming in Dart

Dart is an Object-Oriented language. Object Orientation is a software development paradigm that follows real-world modelling. Object Orientation considers a program as a collection of objects that communicate with each other via mechanism called methods.

  • Object βˆ’ An object is a real-time representation of any entity. As per Grady Brooch, every object must have three features βˆ’
    • State βˆ’ described by the attributes of an object.
    • Behavior βˆ’ describes how the object will act.
    • Identity βˆ’ a unique value that distinguishes an object from a set of similar such objects.
  • Class βˆ’ A class in terms of OOP is a blueprint for creating objects. A class encapsulates data for the object.
  • Method βˆ’ Methods facilitate communication between objects.

Example: Dart and Object Orientation

class TestClass {   
   void disp() {     
      print("Hello World"); 
   } 
}  
void main() {   
   TestClass c = new TestClass();   
   c.disp();  
}

The above example defines a class TestClass. The class has a method disp(). The method prints the string β€œHello World” on the terminal. The new keyword creates an object of the class. The object invokes the method disp().

The code should produce the following output βˆ’

Hello World

Next Topic : Click Here

Leave a Reply