Tagged Questions
1
vote
1answer
104 views
Default value for struct parameter
Let's say I have the following struct:
struct myStruct
{
int x;
int y;
int z;
int w;
};
I want to initialize this struct to a default value when calling the following function. If it helps ...
10
votes
1answer
277 views
c++ static template members initialization issue
gcc 4.5.1, SuSE Linux i686
Suppose we have following code:
template<typename realT> class B
{
public:
B() {std::cout << "B()" << std::endl;}
};
template<typename realT> ...
2
votes
1answer
161 views
How to guarantee initialization ordering of const static members in templated structures
I have two templated structures that each contain a const static member variable. The initialization of one of these member variables depends on the second. I would therefore like to be able to ...
1
vote
2answers
187 views
static struct in anonymous namespace
that this snippet of code actually do?
#include <iostream>
#include <cstdio>
#include <cstdlib>
using namespace std;
void test();
namespace {
static struct StaticStruct {
...
2
votes
1answer
297 views
Initialization order of static data inside class template
// File: InitFirst.h
#pragma once
template <int val>
struct InitFirst
{
static float s_dividedByThree;
};
template <int val>
float InitFirst<val>::s_dividedByThree = val / ...
3
votes
2answers
159 views
Is the order of file-level static variables always the same within a given translation unit?
I have a program split up into two source files:
example.cpp
#include <iostream>
class A {
public:
A(int x) {
::std::cout << "In A(" << x << ")\n";
}
};
static ...
0
votes
2answers
375 views
Global initialization in Android
I'm writing some library code distributed as a jar file that developers will need to initialize with an application id before using. Initialization is just a function call, like
...