Translation for "data type" to finnish
Data type
Translation examples
List data types List data types always resolve as String types.
List tietotyypit List tietotyypit aina ratkaista kuin String tyyppejä.
Union data types Union data types return a String containin
Union tietotyypit Union tietotyypit palauttaa String joka sisältää sisällön unionin.
The data type for each field is listed in the Data Type column of the table design grid.
Kunkin kentän tietotyyppi näkyy taulukon rakenneruudukon Tietotyyppi-sarakkeessa.
To change the data type for a column, click the column's Data Type field, and then select a data type from the list or type it into the list.
Voit muuttaa sarakkeen tietotyypin napsauttamalla sarakkeen Tietotyyppi-kenttää ja valitsemalla sitten tietotyypin luettelosta tai kirjoittamalla sen luetteloon.
New data types and controls
Uudet tietotyypit ja ohjausobjektit
entities and their data types
yhteisöt ja niiden tietotyypit
"Programming with abstract data types".
Tarkoituksena oli tutkia abstrakteja tietotyyppejä.
Data types and behaviors of objects are described by classes and traits.
Tietotyypit ja olioiden käyttäytyminen määritellään luokissa ja piirteissä(eng. traits).
Covers the definition of data types and the ways images can be transferred via GigE.
Sisältää tietotyyppien määrittelyn ja tavat joilla kuvia voidaan siirtää GigE Device Discovery Mechanism.
The project also succeeded at defining type-safe data bindings between XML schema types and a wide variety of C/C++ data types.
SystemC sisältää myös joukon uusia laitteistoläheisiä perustietotyyppejä normaalien C/C++ -tietotyyppien lisäksi.
It prescribes that software designers should define formal, precise and verifiable interface specifications for software components, which extend the ordinary definition of abstract data types with preconditions, postconditions and invariants.
Nämä määritykset laajentavat tavallisten abstraktien tietotyyppien määritelmää alkuehdoilla, loppuehdoilla ja invarianteilla.
In computing, a hash table (hash map) is a data structure that implements an associative array abstract data type, a structure that can map keys to values.
Hakurakenne eli assosiaatiotaulu (engl. associative array) on abstrakti tietotyyppi, joka kuvaa avaimia arvoiksi.
XPath 1.0 defines four data types: node-sets (sets of nodes with no intrinsic order), strings, numbers and booleans.
XPath 1.0:ssa dokumentin rakenteet ovat olioita, jotka voidaan jakaa neljään eri tietotyyppiin: solmujoukko, merkkijono, numero sekä boolean-tyyppi.
As a computer language, IDL: is dynamically typed. has separate namespaces for variables, functions and procedures, but no namespace hierarchy. was originally single threaded but now has many multi-threaded functions and procedures. has all function arguments passed by reference; but see "problems", below. has named parameters called keywords which are passed by reference. provides named parameter inheritance in nested routine calls, by reference or value. does not require variables to be predeclared. provides COMMON block declarations and system variables to share global values among routines. provides a basic form of object-oriented programming, somewhat similar to Smalltalk, along with operator overloading. implements a persistent, global heap of pointer and object variables, using reference counting for garbage collection. compiles to an interpreted, stack-based intermediate p-code (à la Java Virtual Machine). provides a simple and efficient index slice syntax to extract data from large arrays. provides various integer sizes, as well as single and double precision floating point real and complex numbers. provides composite data types such as character strings, homogeneous-type arrays, lists, hash tables, and simple (non-hierarchical) record structures of mixed data types.
Siten osa IDL-ohjelmointitaitoa on käyttää raskaissa numeerisissa laskutoimituksissa kieleen sisäänrakennettuja vektorioperaatioita. dynaaminen tyypitys yksi yhteinen nimiavaruus yksisäikeinen ohjelman suoritus yleensä funktioiden argumentit välitetään viittauksena muuttujia ei tarvitse määritellä globaaleja muuttujia voi jakaa aliohjelmien välillä vain COMMON-alueiden välityksellä tuki yksinkertaiselle oliopohjaiselle ohjelmoinnille ohjelmat käännetään tulkittavaksi välikoodiksi, samaan tapaan kuin Javan virtuaalikoneessa yksinkertainen ja tehokas indeksointi, jolla taulukosta voidaan poimia osia eri kokonaislukutyyppejä, yksin- ja kaksinkertaisen tarkkuuden liukuluvut reaali- ja kompleksiluvuille yhdistettyjä tietotyyppejä (merkkijonot, yhtä alkiotyyppiä sisältävät taulukot, yksinkertaiset (ei-hierarkkiset) eri tietotyyppejä yhdistävät struktuurit) Jotkin ominaisuuksista, jotka tekevät IDL:stä helpon vuorovaikutteisessa käytössä, vaikeuttavat laajojen ohjelmistojen kirjoittamista.
A switch expression can apply pattern matching to an enum value, allowing for elegant solutions to complex programming problems: enum Color { red; green; blue; rgb( r : Int, g : Int, b : Int ); } class Colors { static function toInt ( c : Color ) : Int { return switch ( c ) { case red: 0xFF0000; case green: 0x00FF00; case blue: 0x0000FF; case rgb(r, g, b): (r << 16) | (g << 8) | b; } } static function validCalls() { var redint = toInt(Color.red); var rgbint = toInt(Color.rgb(100, 100, 100)); } } Examples of parametric enum types are the Haxe standard library types Option and Either: enum Option<T> { Some(v:T); None; } enum Either<L, R> { Left(v:L); Right(v:R); } Haxe also supports generalized algebraic data types (GADTs).
Niillä voi olla parametrejä ja ne voivat olla rekursiivisia, joten ne muistuttavat esim. Haskell- ja ML-kielten algebrallisia tietotyyppejä. enum Color { red; green; blue; rgb: ( r : Int, g : Int, b : Int ); } class Colors { static function toInt ( c : Color ) : Int { return switch ( c ) { case red: 0xFF0000; case green: 0x00FF00; case blue: 0x0000FF; case rgb(r, g, b): (r << 16) | (g << 8) | b; } } static function validCalls() { var redint = toInt(Color.red); var rgbint = toInt(Color.rgb(100,100,100)); } } (muokattu haxe-oppaan pohjalta)
How many English words do you know?
Test your English vocabulary size, and measure how many words you know.
Online Test