- Julia 1.0 Programming Complete Reference Guide
- Ivo Balbaert Adrian Salceanu
- 201字
- 2021-06-24 14:21:49
Type annotations
As we saw in Chapter 2, Variables, Types, and Operations, type-annotating a variable is done with the :: operator, such as in the function definition function write(io::IO, s::String) #... end, where the parameter io has to be of type IO, and s of type String. To put it differently, io has to be an instance of type IO, and s an instance of type String. The :: operator is, in fact, an assertion that affirms that the value on the left is of the type on the right. If this is not true, a typeassert error is thrown. Try this out in the REPL:
# see the code in Chapter 6\conversions.jl: (31+42)::Float64
We get an ERROR: TypeError: in typeassert, expected Float64, got Int64 error message.
This is, in addition to the method specialization for multiple dispatch, an important reason why type annotations are used in function signatures.
The operator :: can also be used in the sense of a type declaration, but only in local scope, such as in functions, as follows:
n::Int16 or local n::Int16 or n::Int16 = 5
Every value assigned to n will be implicitly converted to the indicated type with the convert function.
- 微信公眾平臺開發:從零基礎到ThinkPHP5高性能框架實踐
- HTML5+CSS3+JavaScript Web開發案例教程(在線實訓版)
- Apache Kafka Quick Start Guide
- 軟件品質之完美管理:實戰經典
- 零基礎入門學習Python(第2版)
- Hands-On Neural Network Programming with C#
- Angular應用程序開發指南
- Delphi開發典型模塊大全(修訂版)
- Julia High Performance(Second Edition)
- HTML5移動Web開發
- Android高級開發實戰:UI、NDK與安全
- JavaEE架構與程序設計
- Python數據預處理技術與實踐
- Scratch編程入門與算法進階(第2版)
- 面向對象程序設計及C++實驗指導(第3版)