Tagged Questions
In C++, the typedef keyword allows you to create an alias for a data type
91
votes
5answers
53k views
Difference between 'struct' and 'typedef struct' in C++?
In C++, is there any difference between:
struct Foo { ... };
and
typedef struct { ... } Foo;
47
votes
2answers
666 views
Unusual typedef use in C++
I came across a new use of the keyword typedef in C++.
What does this typedef statement mean ?
int typedef foo;
34
votes
7answers
663 views
Are there cases where a typedef is absolutely necessary?
Consider the following excerpt from the safe bool idiom:
typedef void (Testable::*bool_type)() const;
operator bool_type() const;
Is it possible to declare the conversion function without the ...
33
votes
9answers
42k views
Why should we typedef a struct so often in C?
I have seen many programs consisting of structures like the one below
typedef struct
{
int i;
char k;
} elem;
elem user;
I have seen this many times. Why is it needed so often? Any specific ...
32
votes
8answers
13k views
Is there a Java equivalent or methodology for the typedef keyword in C++?
Coming from a C and C++ background, I found judicious use of typedef to be incredibly helpful. Do you know of a way to achieve similar functionality in Java, whether that be a Java mechanism, ...
31
votes
4answers
10k views
Equivalent of typedef in C#
Is there a typedef equivalent in C#, or someway to get some sort of similar behaviour? I've done some googling, but everywhere I look seems to be negative. Currently I have a situation similar to the ...
28
votes
5answers
458 views
Understanding confusing typedef grammar
Consider the following code-snippet
typedef int type;
int main()
{
type *type; // why is it allowed?
type *k ;// which type?
}
I get an error 'k' is not declared in this scope. The compiler ...
28
votes
5answers
17k views
Forward declaration of a typedef in C++
Why won't the compiler let me forward declare a typedef?
Assuming it's impossible, what's the best practice for keeping my inclusion tree small?
25
votes
5answers
3k views
Header file best practices for typedefs
I'm using shared_ptr and STL extensively in a project, and this is leading to over-long, error-prone types like shared_ptr< vector< shared_ptr<const Foo> > > (I'm an ObjC programmer ...
23
votes
4answers
549 views
Repeated typedefs - invalid in C but valid in C++?
I would like a standard reference why the following code triggers a compliance warning in C (tested with gcc -pedantic; "typedef redefinition"), but is fine in C++ (g++ -pedantic):
typedef struct Foo ...
23
votes
8answers
5k views
Internal typedefs in C++ - good style or bad style?
Something I have found myself doing often lately is declaring typedefs relevant to a particular class inside that class, i.e.
class Lorem
{
typedef boost::shared_ptr<Lorem> ptr;
typedef ...
19
votes
12answers
2k views
How do you read C declarations?
I have heard of some methods, but none of them have stuck. Personally I try to avoid complex types in C and try to break them into component typedef.
I'm now faced with maintaining some legacy code ...
17
votes
3answers
237 views
Non-pointer typedef of member functions not allowed?
After getting an answer to this question I discovered there are two valid ways to typedef a function pointer.
typedef void (Function) ();
typedef void (*PFunction) ();
void foo () {}
Function * p = ...
17
votes
5answers
18k views
invalid use of incomplete type
I'm trying to use a typedef from a subclass in my project, I've isolated my problem in the example below.
Does anyone know where I'm going wrong?
template<typename Subclass>
class A {
...
17
votes
1answer
1k views
Destructors of builtin types (int, char etc..)
In C++ the following code gives a compiler error:
void destruct1 (int * item)
{
item->~int();
}
This code is nearly the same, I just typedef the int to another type and something magic ...
16
votes
12answers
3k views
Typedef pointers a good idea?
I looked through some code and noticed that the convention was to turn pointer types like
SomeStruct*
into
typedef SomeStruct* pSomeStruct;
Is there any merit to this?
15
votes
5answers
6k views
Why do I need to use typedef typename in g++ but not VS?
It had been a while since GCC caught me with this one, but it just happened today. But I've never understood why GCC requires typedef typename within templates, while VS and I guess ICC don't. Is the ...
14
votes
7answers
17k views
uint8_t vs unsigned char
What is the advantage of using uint8_t over unsigned char in C?
I know that on almost every system uint8_t is just a typedef for unsigned char,
so why use it?
13
votes
1answer
2k views
C++ template typedef
I have a class
template<size_t N, size_t M>
class Matrix {
// ....
};
I want to make a typedef which creates a Vector (column vector) which is equivalent to a Matrix with sizes N and 1. ...
13
votes
8answers
873 views
13
votes
4answers
10k views
Convert objective-c typedef to its string equivalent
Assuming that I have a typedef declared in my .h file as such:
typedef enum {
JSON,
XML,
Atom,
RSS
} FormatType;
I would like to build a function that converts the numeric value of the ...
12
votes
5answers
606 views
If I do a `typedef` in C or C++, when should I add `_t` at the end of typedef'ed type?
I am confused when should I add the trailing _t to typedef'ed types?
For example, should I do this:
typedef struct image image_t;
or this:
typedef struct image image;
What are the general ...
11
votes
3answers
574 views
Is the typedef-name optional in a typedef declaration?
I was quite surprised when I saw the following code compile without errors or warnings in g++-4.2:
typedef enum test { one };
My assumption was that if you used the typedef keyword it would require ...
11
votes
6answers
283 views
(Re)named std::pair members
Instead of writing town->first I would like to write town->name. Inline named accessors (1, 2) are the best solutions I have found so far. My problem with named accessors is the loss of type ...
11
votes
15answers
732 views
Is typedef ever required in C?
Typedef is very useful for portable names, tag names (typedef struct foo Foo;) and
keeping complicated (function) declarations readable (typedef int
(*cmpfunc)(const void *, const void *);).
But are ...
11
votes
4answers
481 views
Can somebody explain this C++ typedef?
I've just started working with C++ after not having worked with it for quite a while. While most of it makes sense, there are some bits that I'm finding a bit confuddling. For example, could somebody ...
10
votes
3answers
179 views
Sorting array from typedef struct in C
Problem: Trying to sort an array coming from a typedef struct I created (phonebook).
Goal: Trying to build a phonebook that allows users to add, delete, sort, and print the phonebook.
Where I'm at: ...
10
votes
3answers
131 views
What are the differences between typedef and using?
What are the differences between using
typedef Some::Nested::Namespace::TypeName TypeName;
or
using Some::Nested::Namespace::TypeName;
to provide the shorthand TypeName in the local scope?
10
votes
2answers
215 views
Creating new types in C++
Using typedef in C++ creates an alias for a type.
So:
typedef double Length;
typedef double Mass;
creates two aliases which can be intermixed. In other words we can pass a value of type Mass to a ...
10
votes
0answers
268 views
C “function pointer” typedef without asterisk? [closed]
Possible Duplicate:
what does this typedef mean? a function prototype ?
Today I came across this syntax
typedef double (d2d)(double);
cdecl tells me it's a function returning a double ...
10
votes
6answers
356 views
What's the best strategy for typedef'ing shared pointers?
I have a quick question regarding the use of typedefs for lengthy templates. The crux: I've found myself in something of a pickle—there doesn't seem to be a good place to place typedefs except local ...
10
votes
3answers
520 views
What is the difference between declaring an enum with and without 'typedef'?
The standard way of declaring an enum in C++ seems to be:
enum <identifier> { <list_of_elements> };
However, I have already seen some declarations like:
typedef enum { ...
10
votes
5answers
8k views
self referential struct definition?
I haven't been writing C for very long, and so I'm not sure about how I should go about doing these sorts of recursive things... I would like each cell to contain another cell, but I get an error ...
9
votes
3answers
177 views
Typedef a struct containing a pointer to same type
I'm trying to typedef a struct which contains a pointer to another of the same type.
Thats what I thought would be the best version:
typedef struct Element
{
char value;
struct Element ...
9
votes
11answers
953 views
Forward declarations of typedef struct
Bounty question: So, these two Foos aren't the same thing. Fine. The second form is given in a library. How do I forward-declare it given that I can't change it?
I always thought C and C++ allowed ...
9
votes
3answers
188 views
smart pointers, typedefs and forward declarations
I love using smart pointers, and have seen a bit of code which makes nice use of typedefs make make them prettier. For example:
struct A {
typedef boost::shared_ptr<A> pointer;
};
allows ...
9
votes
3answers
179 views
How to use typedef for a generic class in c++
I am trying to use unordered_map. But in some of the servers we don't have tr1 library. In those cases I want to use the map.
So, I want to write a header file where I will use one of the following ...
9
votes
2answers
605 views
C++ static polymorphism (CRTP) and using typedefs from derived classes
I read the Wikipedia article about the curiously recurring template pattern in C++ for doing static (read: compile-time) polymorphism. I wanted to generalize it so that I could change the return types ...
9
votes
4answers
667 views
C++ crazy typedef : what is the point of allowing this syntax by the Standard?
The old familiar one:
typedef int my_int; //cute
This syntax is perfect. No problem.
Now, when we can write typedefs like above, then what is the point of allowing this syntax:
int typedef ...
9
votes
7answers
396 views
Why should structure names have a typedef?
I have seen source codes always having a typedef for a structure and using the same everywhere instead of using the structure name as "struct sname" etc directly?
What is the reason behind this? Are ...
9
votes
4answers
1k views
Is “const LPVOID” equivalent to “void * const”?
And if so, why some Win32 headers use it?
For instance:
BOOL APIENTRY VerQueryValueA( const LPVOID pBlock,
LPSTR lpSubBlock,
LPVOID * lplpBuffer,
PUINT puLen
);
A bit more ...
9
votes
2answers
4k views
Typedef a template class without specifying the template parameters
I'm trying to typedef either an unordered_map or std::map depending whether there are TR1 libraries available. But I don't want to specify the template parameters. From what i've read so far, ...
9
votes
7answers
641 views
What is the purpose of typedefing a class in C++?
I've seen code like the following frequently in some C++ code I'm looking at:
typedef class SomeClass SomeClass;
I'm stumped as to what this actually achieves. It seems like this wouldn't change ...
9
votes
9answers
4k views
Enforce strong type checking in C (type strictness for typedefs)
Is there a way to enforce explicit cast for typedefs of the same type? I've to deal with utf8 and sometimes I get confused with the indices for the character count and the byte count. So it be nice to ...
8
votes
2answers
226 views
enum values: NSInteger or int?
tl;dr Version
How are the data types of an enum's constants guaranteed to be NSUInteger instead of unsigned int when declaring an enum thusly:
enum {
NSNullCellType = 0,
NSTextCellType = 1,
...
8
votes
2answers
193 views
How to typedef a template class?
How should I typedef a template class ? Something like:
typedef std::vector myVector; // <--- compiler error
I know of 2 ways:
(1) #define myVector std::vector // not so good
(2) ...
8
votes
2answers
302 views
Defining a Type Alias in C# across multiple files
In C++, it's easy to write something along the lines of:
#ifdef FAST
typedef Real float;
#endif
#ifdef SLOW
typedef Real double;
#endif
#ifdef SLOWER
typedef Real quad;
#endif
In some common ...
8
votes
6answers
453 views
is the `synonym` in a `typedef` mandatory?
I encountered this in a code review:
typedef struct C { int i; };
It compiles.
Apart from it being C-style, where structs are in a separate 'namespace', and need to be typedeffed in order to use ...
8
votes
8answers
425 views
Is typedef'ing a pointer type considered bad practice? [closed]
Possible Duplicate:
Typedef pointers a good idea?
I've seen this oddity in many APIs I have used:
typedef type_t *TYPE;
My point is that declaring a variable of type TYPE will not make ...
8
votes
4answers
643 views
what does this typedef mean? a function prototype?
typedef int (fc_name) (void);
here fc_name is any valid C symbol.
how different is this from a function pointer typedef ?