Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying haXe 2 Beginner's Guide
  • Table Of Contents Toc
haXe 2 Beginner's Guide

haXe 2 Beginner's Guide

By : Benjamin Dasnois
3.5 (2)
close
close
haXe 2 Beginner's Guide

haXe 2 Beginner's Guide

3.5 (2)
By: Benjamin Dasnois

Overview of this book

This book is part of the Packt Beginner's Guide series. Written in an engaging style, it offers step-by-step examples with screenshots at key steps and clear explanation of what is happening in each task. This book is written for both Beginners and Developers who want to learn this multi-platform programming language to build web applications from scratch.
Table of Contents (21 chapters)
close
close
haxe 2
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
2
Index

Static typing


In haXe, once a variable has been declared and its type is known, it is not possible to assign a value of another type to it. Note however that the compiler allows you to redeclare a variable with the same name and another type. So, the following code compiles:

class Main
{
   public static function main()
   {
      var e : String;
      e = "String";
      var e : Int;
      e = 12;
   }
}

However, although this code compiles, you should not be doing this because it might be confusing to other developers or even to you as well, if you have to read your code several days later.

Therefore, to keep things simple, once a variable is typed, its type cannot be changed, and only values of this type can be assigned to it. So, the following wouldn't work:

class Main
{
   public static function main()
   {
      var e : String;
      e = "Test";
      e = 12;
   }
}

This is because 12 is of type Int and not of type String.

Also, note that if you try to read from a variable without having...

CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
haXe 2 Beginner's Guide
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon