here is my problem.
I have a class that regularly modifies a char*.
There is another class, that needs to be able to read this value. So I want to pass the char* to the constructor of this second class, so that it can check the value, when required.
Let me give an example of the implementation that I have for another parameter, it is of a type boolean:
In ClassA:
bool f_valid = false; // global
m_eventCatcher.addProxy(porting::shared_ptr<CallbackProxy>(new handleCall(&f_valid)));
In ClassB:
struct handleCall
{
bool* m_dataValid;
handleCall(bool* result)
{
// saving the pointer to the boolean that I want to change
m_dataValid = result;
}
method()
{
if (smth)
{
(*m_dataValid) = false;
}
}
};
So far so good - this seems to work. Both classes can change and access this boolean.
Now I need to do the same thing with a char* (I cannot use string, so I guess this is a best way to store a short text, like a url address?).
So here is what I wrote:
ClassA:
const char* f_url = "blah blah"; // global
m_eventCatcher.addProxy(porting::shared_ptr<CallbackProxy>(new handleCall2(&f_url)));
ClassC:
struct handleCall2
{
char ** m_url;
handleCall2(char** url)
{
// saving the pointer to the char*
m_url= url;
std::cout << (*m_url) << std::endl; // prints out url fine
}
method()
{
std::cout << (*m_url) << std::endl; // by this time the value has been changed by ClassA, and I print out some rubbish - symbols, squares, etc.
}
};
I guess the problem is because the string has changed, its' address has changed too? I am getting really confused - can someone tell me what is going on, and what should I do in this situation?
UPDATE:
Looks like the problem is in HOW I modify the char*:
f_url = "new text"; // works fine
f_url = fileUrl.c_str(); // doesn't work! I get rubbish in the value when I try to access it from ClassB
strcpy(m_url, fileUrl.c_str()); // I also removed const from the variable and tried this - got a crash "access violation using location" :(
Is there any other way of writing the value of a string into a char *?
Maybe you misunderstand this line? The const qualifier is when you are placing it, referring to the keyword left of it. It's allowed to take it as first keyword but then, AND ONLY then, it is referring to its right ;) So your declaration says: (const char) *f_url so its an pointer to an const char. And I'm guessing (I don't know what's the way you are modifying it's value in that class) you get it by your self, why modifying a const char value could end in rubbish output, don't you? I suggest you want to declare it as
this is
so f_url is an constant address-value which is pointing into an modifiable area. But even this wouldn't make that much sense, because "blah blah" is a address of a const memory area, so you cant modify ("blah blah")[count] = Anything; anyway.
So you should just do
and access the char array aka String about f_url.
Or the better way for you, as I would guess, just keep the const out of the declaration and allocate modifiable memory by your self ;)