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

3.5 (2)
close
close
haXe 2 Beginner's Guide

haXe 2 Beginner's Guide

3.5 (2)

Overview of this book

Table of Contents (21 chapters)
close
close
haxe 2
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
2
Index

Casting


There are three ways to cast a type (that is, changing from a type to another one). One is "safe" while the two others are "unsafe".

Safe casting

Doing a safe casting is as simple as using the cast keyword with the syntax cast(variable, Type). Therefore, you can do:

var a : A;
var b : B;
b = cast(a, B);

This will work if a is in fact an instance of B. If it's not, you will get an error at runtime.

Unsafe casting

You can do an unsafe casting by using the cast keyword in another way. If you just write cast followed by a variable or a value, you can use it as any type. So, for example, the following will compile:

var i : Int;
i = cast "Hello";

Keep in mind that although this code will compile, it is absolutely possible that depending on the target, it will fail at runtime.

Untyped

It's also possible to completely deactivate type checking in a block of code. To do that, you will use the untyped keyword:

untyped { myVar.doSomething();}

However, keep in mind that although it will compile, it...

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