Tagged Questions

6
votes
10answers
4k views

Variable Sized Struct C++

Is this the best way to make a variable sized struct in C++? I don't want to use vector because the length doesn't change after initialization. struct Packet { unsigned int bytelength; ...
2
votes
4answers
5k views

Variable length template arguments list?

I remember seing something like this being done: template <ListOfTypenames> class X : public ListOfTypenames {}; that is, X inherits from a variable length list of typenames passed as the ...
1
vote
4answers
809 views

Difference between variable-length argument and function overloading

This C++ question seems to be pretty basic and general but still I want someone to answer. 1) What is the difference between a function with variable-length argument and an overloaded function? 2) ...
0
votes
2answers
967 views

C++ qsort array of pointers not sorting

I am trying to sort a buffer full of variable-length records alphabetically in C++. I previously asked how to implement this, and was told to sort an array of pointers to the records. I set up an ...
0
votes
3answers
886 views

C++ as in Java?: vector of vectors with *variable* length of int

My model would best use some v int[30][i][N_i]; structure that is 30 vectors of tuples of ints, where v[0] is a dummy, v[1] are plain ints (N_0 of them), v[2] are pairs of int (N_1 pairs) ... ...