ChucK : Language Specification > Type
|
|
|
|
Types, Values, and VariablesChucK is a strongly-typed language, meaning that types are resolved at compile-time. However, it is not quite statically-typed, because the compiler/type system is a part of the ChucK virtual machine, and is a runtime component. This type system helps to impose precision and clarity in the code, and naturally lends to organization of complex programs. At the same time, it is also dynamic in that changes to the type system can take place (in a well-defined manner) at runtime. This dynamic aspect forms the basis for on-the-fly programming. This section deals with types, values, and the declaration and usage of variables. As in other strongly-typed programming languages, we can think of a type as associated behaviors of data. (For example, an 'int' is a type that means integer, and adding two integer is defined to produce a third integer representing the sum.) Classes and objects allow us to extend the type system with our own custom types, but we won't cover them in this section. We will focus mainly on primitive types here, and leave the discussion of more complex types for classes and objects.
View sample
code for types, values, and variables
primitive typesThe primitive, or intrinsic types are those which are simple datatypes (they have no additional data attributes). Objects are not primitive types. Primitive types are passed by value. Primitive types cannot be extended. The primitive types in ChucK are:
For a summary of operations on these types, go to operations and operators. All other types are derived from 'object', either as part of the ChucK standard library, or as a new class that you create. For specification, go to classes and objects. values (literals)Literal values are specified explicitly in code and are assigned a type by the compiler. The following are some examples of literal values: int: 42 int (hexidecimal): 0xaf30 float: 1.323 dur: 5.5::secondIn the above code, second is an existing duration variable. For more on durations, see the manipulating time section. variablesVariables are locations in memory that hold data. Variables have to be declared in ChucK before they are used. For example, to declare a variable of type int called foo: // declare an 'int' called 'foo' We can assign a value to an existing variable by using the ChucK operator (=>). This is one of the most commonly used operators in ChucK, it's the way to do work and take action! We will discuss this family of operators in operators and operations. // assign value of 2 to 'foo' It is possible to combine the two statements into one: // assign 2 to a new variable 'foo' of type 'int' To use a variable, just refer to it by name: // debug-print the value of foo To update the value of foo, for example: // multiply 'foo' by 10, assign back to 'foo' You can also do the above using a *=>(mult-chuck): // multiply 'foo' by 10, and then assign to 'foo' Here is an example of a duration: // assign value of '5 seconds' to new variable bar Once you have bar, you can inductively use it to construct new durations: // 4 bar, a measure?Since time is central to programming ChucK, it is important to understand time, dur, the relationship and operations between them. There is more information in the manipulating time section. reference typesReference types are types which inherit from the object class. Some default reference types include:
complex typesTwo special primitive types are available to to represent complex data, such as the output of an FFT: complex and polar. A complex number of the form a + bi can be declared as#(2,3) => complex cmp; //cmp is now 2 + 3iwhere the #(...) syntax explicitly denotes a complex number in rectangular form. Similarly, explicit complex numbers can be manipulated directly: #(5, -1.5) => complex cmp; // cmp is 5 - 1.5iThe (floating point) real and imaginary parts of a complex number can be accessed with the .re and .im components of a complex number: #(2.0,3.5) => complex cmp;The polar type offers an equivalent, alternative representation of complex numbers in terms of a magnitude and phase value. A polar representation of a complex number can be declared as %(2, .5*pi) => polar pol; // pol is 2∠.5πThe magnitude and phase values can be accessed via .mag and .phase: %(2, .5*pi) => polar pol;polar and complex representations can be cast to each other and multiplied/added/assigned/etc.: %(2, .5*pi) => polar pol; |
|
|
|