Tagged Questions
31
votes
5answers
17k views
C++ multiline string literal
Is there any way to have multiline plaintext constant literals in C++, ala Perl? Maybe some parsing trick with #includeing a file? I can't think of one, but boy, that would be nice. I know it'll be in ...
28
votes
6answers
887 views
Inconsistency between std::string and string literals
I have discovered a disturbing inconsistency between std::string and string literals in C++0x:
#include <iostream>
#include <string>
int main()
{
int i = 0;
for (auto e : ...
15
votes
1answer
545 views
Unicode encoding for string literals in C++11
Following a related question, I'd like to ask about the new character and string literal types in C++11. It seems that we now have four sorts of characters and five sorts of string literals. The ...
11
votes
4answers
161 views
How do I generate an integer from a string literal at compile-time?
In C++, is it possible to generate an integer from a string literal using only compile-time facilities ?
For instance, if all we have is the literal "6", is there some way to use it as a template ...
11
votes
1answer
196 views
Can a string literal be subscripted in a constant expression?
This is valid, because a constexpr expression is allowed to take the value of "a glvalue of literal type that refers to a non-volatile object defined with constexpr, or that refers to a sub-object of ...
10
votes
3answers
358 views
String literals not allowed as non type template parameters
The following quote is from C++ Templates by Addison Wesley. Could someone please help me understand in plain English/layman's terms its gist?
Because string literals are objects with internal ...
10
votes
4answers
838 views
C++: Constructor accepting only a string literal
Is it possible to create a constructor (or function signature, for that matter) that only accepts a string literal, but not an e.g. char const *?
Is it possible to have two overloads that can ...
9
votes
5answers
2k views
C/C++, can you #include a file into a string literal?
I have a C++ source file and a Python source file. I'd like the C++ source file to be able to use the contents of the Python source file as a big string literal. I could do something like this:
char* ...
7
votes
4answers
306 views
char four[4] = “four”; What are the correct semantics for this statement?
int main(void)
{
char four[4] = "four";
return 0;
}
When compiled as a C++ program, G++ reports
xxx.cpp: In function int main():
xxx.cpp:3: error: initializer-string for array of chars is ...
6
votes
2answers
237 views
Assigning string literals to char*
Is the following code legal, deprecated or illegal in C++0x?
char* p = "foobar";
I originally asked this question here as a comment.
6
votes
2answers
942 views
How safe and reliable are C++ String Literals?
So, I'm wanting to get a better grasp on how string literals in C++ work. I'm mostly concerned with situations where you're assigning the address of a string literal to a pointer, and passing it ...
5
votes
1answer
195 views
Unicode string literals
C++11 introduces a new set of string literal prefixes (and even allows user-defined suffixes). On top of this, you can directly use Unicode escape sequences to code a certain symbol without having to ...
5
votes
2answers
807 views
conflicts: definition of wchar_t string in C++ standard and Windows implementation?
From c++2003 2.13
A wide string literal has type “array of n const wchar_t” and has static storage duration, where n is the size of the string as defined below
The size of a wide string ...
5
votes
6answers
3k views
Why is passing a string literal into a char* argument only sometimes a compiler error?
I'm working in a C, and C++ program. We used to be compiling without the make-strings-writable option. But that was getting a bunch of warnings, so I turned it off.
Then I got a whole bunch of errors ...
4
votes
6answers
698 views
c++: generating string literals from template parameters
template < unsigned int i >
struct t {
static const char *s;
};
template < unsigned int i >
const char* t<i>::s = ...;
where ... is "0 1 2 ... i-1", for example "0 1 2 3 4" for ...
4
votes
5answers
559 views
Implementation of string literal concatenation in C and C++
AFAIK, this question applies equally to C and C++
Step 6 of the "translation phases" specified in the C standard (5.1.1.2 in the draft C99 standard) states that adjacent string literals have to be ...
3
votes
2answers
101 views
Why do I get a complier warning for converting a string literal to a char*, is it bad?
So the compiler tells me this is a deprecated conversion from a string-literal to char*:
char* myString = "i like declaring strings like this";
Should I be worried about this? Is this the wrong ...
2
votes
2answers
172 views
How does file encoding affect C++11 string literals?
You can write UTF-8/16/32 string literals in C++11 by prefixing the string literal with u8/u/U respectively. How must the compiler interpret a UTF-8 file that has non-ASCII characters inside of these ...
2
votes
4answers
514 views
C code in C++ compiler
I have following code, it's code from tomcrypto's manual and it won't work on MS VC++ 2008 EE. Any help? Also can I ask replace char* by std::string object?
int main(void)
{
hash_state md;
unsigned ...
2
votes
2answers
257 views
What happens with adjacent string literal concatenation when there is a modifier(L, u8, etc.)
It is valid in C and C++ to break a string literal because the preprocessor or the compiler will
concatenate adjacent string literals.
const char *zStr = "a" "b"; // valid
What happens when string ...
2
votes
2answers
304 views
Combining string literals and integer constants
Given an compile-time constant integer (an object, not a macro), can I combine it with a string literal at compile time, possibly with the preprocessor?
For example, I can concatenate string literals ...
2
votes
2answers
200 views
C++ template argument inference and string literals
I have a "set" data type:
template <class V>
struct Set {
void add(const V& value) {}
};
I want to write a top-level function version of Set::add.
template <class V>
void ...
2
votes
3answers
2k views
Comparing character arrays and string literals in C++
I have a character array and I'm trying to figure out if it matches a string literal, for example:
char value[] = "yes";
if(value == "yes") {
\\ code block
} else {
\\ code block
}
This ...
1
vote
4answers
109 views
Understanding C-strings & string literals in C++
I have a few questions I would like to ask about string literals and C-strings.
So if I have something like this:
char cstr[] = "c-string";
As I understand it, the string literal is created in ...
1
vote
4answers
135 views
Restrict passed parameter to a string literal
I have a class to wrap string literals and calculate the size at compile time.
The constructor looks like this:
template< std::size_t N >
Literal( const char (&literal)[N] );
// used like ...
1
vote
6answers
140 views
c++ How could I properly predefinied array of char*?
I am doing it that way:
int argc = 9;
char* argv[argc];
argv[0] = "c:/prog.exe";
but I get notice, that it is deprecated. What is better way?
1
vote
3answers
209 views
What exactly does U+ stand for and why can't I create a table of Unicode intermediate strings in my C++ application?
I'm trying to convert an application from Java + Swing to C++ + Qt. At one point I had to deal with some Unicode intermediates. In Java, this was fairly easy:
private static String[] hiraganaTable = ...
1
vote
3answers
366 views
std::string vs string literal for functions
I was wondering, I normally use std::string for my code, but when you are passing a string in a parameter for a simply comparison, is it better to just use a literal?
Consider this function:
bool ...
1
vote
6answers
358 views
(c/c++) do copies of string literals share memory in TEXT section?
If I call a function like
myObj.setType("fluid");
many times in a program, how many copies of the literal "fluid" are saved in memory? Can the compiler recognize that this literal is already defined ...
0
votes
1answer
32 views
Accessing in a statically-allocated array VS accessing via a pointer to a statically-allocated array
I need to store number of strings(they will remain constant and will not be modified), in an array, and access them many times,we want to achieve as fast as possible lookup. Which of the below will ...
0
votes
1answer
180 views
What is wrong with this boost c++ regex code?
#include <iostream>
#include <fstream>
#include <string>
#include<string>
#include<boost/algorithm/string.hpp>
#include<boost/regex.hpp>
#include ...
0
votes
5answers
239 views
Localization of string literals
I need to localize error messages from a compiler. As it stands, all error messages are spread throughout the source code as string literals in English. We want to translate these error messages into ...