Impressum
GoTo:
Home
 
NLP Trainings die Amika Methode   
 
Lesezeichen [ Info # Jobs # QR-Code # NLP Training ]Sa 20 April 2024 12:35:48


 huecker.com # Grundlagen der Programmierung | Tcl Tutorial.
--

 

. Assigning values to variables .

[ Previous | Index | Next ]

In Tcl, everything may be represented as a string, although internally it may be represented as a list, integer, double, or other type, in order to make the language fast.

The assignment command in Tcl is set. - When set is called with two arguments, as in: set fruit "Cauliflower", - it places the second argument ( "Cauliflower" ) in the memory space referenced by the first argument ( fruit ).

set always returns the contents of the variable named in the first argument. Thus, when set is called with two arguments, it places the second argument in the memory space referenced by the first argument and then returns the second argument. In the above example, for instance, it would return "Cauliflower", without the quotes.

The first argument to a set command can be either a single word, like fruit or pi, or it can be a member of an array. Arrays will be discussed in greater detail later, for the time being just remember that many data can be collected under a single variable name, and an individual datum can be accessed by its index within that array. Indexing into an array in Tcl is handled by putting the index within parentheses after the name of the variable.

set can also be invoked with only one argument. When called with just one argument, it will return the contents of that argument.

Here's a summary of the set command.

set varName ?value?
If value is specified, then the contents of the variable varName are set equal to value.
If varName consists only of alphanumeric characters, and no parenthese, it is a scalar variable.
If varName has the form varName(index), it is a member of an associative array.

If you look at the example code, you'll notice that in the set command the first argument is typed with only its name, but in the puts statement the argument is preceded with a $. - The dollar sign tells Tcl to use the value of the variable - in this case X or Y.

Tcl passes data to subroutines either by name or by value. Commands that don't change the contents of a variable usually have their arguments passed by value. Commands that do change the value of the data must have the data passed by name.

--

. Example .

    set X "This is a string"

    set Y 1.24

    puts $X
    puts $Y

    puts "..............................."

    set label "The value in Y is: "
    puts "$label $Y"
  

--
[ Home | Top ]
[ . Previous | Index | Next . ]
Der Inhalt dieser Seite wurde am 06.11.2019 um 12.19 Uhr aktualisiert.
Navigation Seminare Magic Software Projekte Publikationen Kontakt Home
 
   huecker dot com * Germany | Datenschutz
© 1999, 2024 Franz-Josef Hücker. All Rights Reserved.
Send Page Print Page LinkedIn follow me on twitter RSS Feeds & Podcasts