catflap.org Online Dictionary Query


Query string:
Search type:
Database:

Database copyright information
Server information


5 definitions found
From The Free On-line Dictionary of Computing (27 SEP 03) :   [ foldoc ]

  weak typing
       
           Strict enforcement of type rules but with
          well-defined exceptions or an explicit type-violation
          mechanism.
       
          Weak typing is "friendlier" to the programmer than strong
          typing, but catches fewer errors at compile time.
       
          C and C++ are weakly typed, as they automatically coerce
          many types e.g. ints and floats.  E.g.
       
           int a = 5;
           float b = a;
       
          They also allow ignore typedefs for the purposes of type
          comparison; for example the following is allowed, which would
          probably be disallowed in a strongly typed language:
       
           typedef int Date;    /* Type to represent a date */
           Date a = 12345;
           int b = a;       /* What does the coder intend? */
       
          C++ is stricter than C in its handling of enumerated types:
       
           enum animal CAT=0,DOG=2,ANT=3;
           enum animal a = CAT;  /* NB The enum is optional in C++ */
           enum animal b = 1;    /* This is a warning or error in C++ */
       
          (2000-07-04)
       
       

From English Wiktionary: All languages (2023-07-27) :   [ dictinfo.com:wikt-en-ALL-2023-07-27 ]

  weak typing
     n.
     (lb en computing programming) A system that does not place any
  restriction on the interactions between objects of different data
  types.

From English Wiktionary: English language only (2023-07-27) :   [ dictinfo.com:wikt-en-en-2023-07-27 ]

  weak typing
     n.
     (lb en computing programming) A system that does not place any
  restriction on the interactions between objects of different data
  types.

From English Wiktionary: Western, Greek, and Slavonic languages only (2023-07-27) :   [ dictinfo.com:wikt-en-Western_Greek_Slavonic-2023-07-27 ]

  weak typing
     n.
     (lb en computing programming) A system that does not place any
  restriction on the interactions between objects of different data
  types.

From English Wiktionary: Western languages only (2023-07-27) :   [ dictinfo.com:wikt-en-Western-2023-07-27 ]

  weak typing
     n.
     (lb en computing programming) A system that does not place any
  restriction on the interactions between objects of different data
  types.

Questions or comments about this site? Contact dictionary@catflap.org
Access Stats