my-server
← Wiki

Typedef

is a reserved keyword in the programming languages C, C++, and Objective-C. It is used to create an additional name (alias) for another data type, but does not create a new type, except in the obscure case of a qualified typedef of an array type where the typedef qualifiers are transferred to the array element type. As such, it is often used to simplify the syntax of declaring complex data structures consisting of struct and union types, although it is also commonly used to provide specific descriptive type names for integer data types of varying sizes.

Syntax

A typedef declaration follows the same syntax as declaring any other C identifier. The keyword <code>typedef</code> itself is a specifier which means that while it typically appears at the start of the declaration, it can also appear after the type specifiers or between two of them.

In the C standard library and in POSIX specifications, the identifier for the typedef definition is often suffixed with , such as in <code>size_t</code> and <code>time_t</code>. This is practiced in some other coding systems, although POSIX explicitly reserves this practice for POSIX data types. In modern codebases, especially in C++, this suffix is no longer popular, but does appear in some types in the C++ Standard Library along with other suffixes like .

Examples

This snippet declares the type as an alias of the type , allowing a user to use as a type in declarations where they would otherwise use :

Documentation use

A typedef declaration may be used to give more contextual meaning than is given by the underlying type, hinting to the user of functions or variables a certain meaning or format is expected. For example, in the code below, the type is being further clarified to the distinct aliases and :

The use of typedef here is used to indicate that only variables declared as (or variables that can be interpreted as a type) should be used as the first argument, and variables declared as for the second. The value of using typedef in this manner would be for specific cases where masking the underlying type with an alias would add substantial clarity for the programmer, and not for any sort of type enforcement from the compiler, since typedefs are translated back to underlying types before any error checking occurs. For example, this code will compile, without any error:

Declaration simplification

A typedef may be used to simplify the declarations of objects having types with verbose names, such as struct, union, or enum types. The point of this is to make it more convenient to declare variables with certain types. For example,

Along with providing previously declared types directly after the keyword, one may also put a full definition of a struct, union, or enum. This has the effect of providing both a type definition and an alias in one statement.

When a definition is provided in the typedef declaration, the tag (i.e. name of the underlying type) is optional, leaving only the alias. Modifying the previous snippet:

In C++, unlike in C, the tag of a , , , or type is called a class name, and can be used as a type alias automatically without any typedef declaration.

The correspondence between this C++ feature and typedef is very strong, extending to the fact that it is possible to shadow the simple type name in a nested scope by declaring it as the identifier of another kind of entity. In such a case, the C-style full type name (an "elaborated type specifier") can still be used to refer to the class or enum type.

In C++, then, can be used anywhere that can be used, as long as there are no other declarations of these identifiers. The reverse is not true, however, for C++ requires the class name for some purposes, such as the names of constructor methods.

A notorious example where even C++ needs the keyword is the POSIX stat system call that uses a struct of the same name in its arguments:

Here both C as well as C++ need the keyword in the parameter definition.

Pointers

The typedef may be used to define a new pointer type.

is a new alias with the pointer type . The definition, , defines a variable with the type . So, is a pointer which can point to a variable of type .

Using typedef to define a new pointer type may sometimes lead to confusion. For example:

Above, means defining 2 variables with type for both. This is because a type defined by typedef is a type, not an expansion. In other words, , which is the type, decorates both and . For , the type decorates the and . So, is equivalent to 2 separate definitions, and . means that is a pointer pointing to a memory with type. Shortly, has the type, .

Constant pointers

Again, because typedef defines a type, not an expansion, declarations that use the const qualifier can yield unexpected or unintuitive results. The following example declares a constant pointer to an integer type, not a pointer to a constant integer:

Since it is a constant pointer, it must be initialized in the declaration.

Structures and structure pointers

Typedefs can also simplify definitions or declarations for structure pointer types. Consider this:

Using typedef, the above code can be rewritten like this:

In C, one can declare multiple variables of the same type in a single statement, even mixing structure with pointer or non-pointers. However, one would need to prefix an asterisk to each variable to designate it as a pointer. In the following, a programmer might assume that was indeed a , but a typographical error means that is a . This can lead to subtle syntax errors.

By defining the typedef , it is assured that all variables are structure pointer types, or say, that each variable is a pointer type pointing to a structure type.

Function pointers

The preceding code may be rewritten with typedef specifications:

Here, is the new alias for the type. A is a pointer to a function that returns an integer and takes as arguments a float followed by an integer.

When a function returns a function pointer, it can be even more confusing without typedef. The following is the function prototype of signal(3) from FreeBSD:

The function declaration above might be mildly cryptic to a few people as it might be slightly difficult for a reader to determine what the function accepts as arguments or the type that it returns. In plain English, it could be described as "a function that takes a first argument of an integer and a second argument of a pointer to a function that itself takes an argument of an integer and returns nothing, and returns a pointer to a function that itself takes an argument of an integer and returns nothing". With typedefs, it can be written slightlymore cleanly:

Arrays

A typedef can also be used to simplify the definition of array types. For example,

Here, is the new alias for the type, which is an array type with 6 elements. For , is a pointer pointing to the memory of the type.

Type casts

A typedef is created using type definition syntax but can be used as if it were created using type cast syntax. (Type casting changes a data type.) For instance, in each line after the first line of:

is used on the left-hand side to declare a variable and is used on the right-hand side to cast a value. Thus, the typedef can be used by programmers who do not wish to figure out how to convert definition syntax to type cast syntax.

Without the typedef, it is generally not possible to use definition syntax and cast syntax interchangeably. For example:

Usage in C++

In C++ type names can be complex especially with namespace clutter, and typedef provides a mechanism to assign a simple name to the type.

and

C++11 introduced the possibility to express typedefs with instead of . For example, the above two typedefs could equivalently be written as

Use with templates

C++03 does not provide templated typedefs. For instance, to have represent for every type one cannot use:

However, if one is willing to accept in lieu of , then it is possible to achieve the desired result via a typedef within an otherwise unused templated class or struct:

In C++11, templated typedefs are added with the following syntax, which requires the keyword rather than the keyword. (See template aliases.)

Other languages

In SystemVerilog, typedef behaves exactly the way it does in C and C++.

In many statically typed functional languages, like Haskell, Miranda, OCaml, etc., one can define type synonyms, which are the same as typedefs in C. An example in Haskell:

This example has defined a type synonym as an integer type.

In Swift, one uses the keyword to create a typedef:

C# contains a feature which is similar to the typedef or the syntax of C++.

In D the keyword allows to create type or partial type synonyms.

In Python, a type can be aliased using the <code>import as</code> statement:

In Rust, a type can be aliased using the <code>use as</code> statement:

Usage concerns

Kernighan and Ritchie stated two reasons for using a typedef. First, it provides a means to make a program more portable or easier to maintain. Instead of having to change a type in every appearance throughout the program's source files, only a single typedef statement needs to be changed. <code>size_t</code> and <code>ptrdiff_t</code> in <code><stdlib.h></code> are such typedef names. Second, a typedef can make a complex definition or declaration easier to understand.

Some programmers are opposed to the extensive use of typedefs. Most arguments center on the idea that typedefs simply hide the actual data type of a variable. For example, Greg Kroah-Hartman, a Linux kernel hacker and documenter, discourages their use for anything except function prototype declarations. He argues that this practice not only unnecessarily obfuscates code, it can also cause programmers to accidentally misuse large structures thinking them to be simple types.

See also

References