Omnimaga
Calculator Community => Other Calc-Related Projects and Ideas => TI-Nspire => Topic started by: CiriousJoker on February 08, 2015, 07:36:15 pm
-
Sorry to bug you guys again, but i really cant figure out why this doesnt work :(
Here's the important code snipped im talking about:
class Level
{
public:
static bool InitLevel();
private:
static string LevelDataString;
};
bool Level::InitLevel()
{
if(( (Level::LevelDataString).size() % 6) != 0)
{
return false; // This line crashes it all
}
return true;
}
This crashes:
if(( (Level::LevelDataString).size() % 6) != 0)
{
char popup_result[256];
show_msgbox("Error", "The level seems to be broken.");
}
return true;
This also crashes:
if(( (Level::LevelDataString).size() % 6) != 0)
{
return false;
}
return true;
This works (but makes no sense, i just tested if ANY code makes it crash):
if(( (Level::LevelDataString).size() % 6) != 0)
{
int test = 1;
}
return true;
I seriously dont get why i cant just return false from a boolean function ...
I mean, does it crash in "normal" for pcs too or is this just an ndless problem?
-
Do you ever initialize LevelDataString? E.g.
std::string Level::LevelDataString = "PotatoLand";
-
AFAIK "static std::string LevelDataString" in the class definition isn't enough. It's only in a header file, but it doesn't have a place to stay, in your current code, it does not exist.
You have to put "std::string Level::LevelDataString" somewhere in a .cpp file. It could also be because you're using a too old version of the SDK, without support for C++ as it was first added by tangrs somewhere around r865.
-
i've added this above the definition of the function:
string Level::LevelDataString = "002:000:001+000:001:001+001:002:003";
But it seems to be a problem with the if testing, because if i just write:
if(true)
{
return false;
}
it works
-
Hi Virusscript24,
Vogtinator is correct. Having a static class member variable also needs something else. Here is a small example:
#include <iostream>
class Something
{
public:
static int s_nValue;
};
int Something::s_nValue = 1;//This part here is needed
int main()
{
Something cFirst;
cFirst.s_nValue = 2;
Something cSecond;
std::cout << cSecond.s_nValue;
return 0;
}
See this tutorial here: http://www.learncpp.com/cpp-tutorial/811-static-member-variables/
Hope that helps!