Tagged Questions

40
votes
4answers
2k views

Why isn't String.Empty a constant?

In .Net why is String.Empty read only instead of a constant? I'm just wondering if anyone knows what the reasoning was behind that decision.
22
votes
8answers
8k views

What is the difference between char s[] and char *s in C?

In C, I can do like this: char s[]="hello"; or char *s ="hello"; so i wonder what is the difference? I want to know what actually happen in memory allocation during compile time and run time.
16
votes
6answers
712 views

correct idiom for std::string constants?

I have a map that represents a DB object. I want to get 'well known' values from it std::map<std::string, std::string> dbo; ... std::string val = map["foo"]; all fine but it strikes me ...
12
votes
6answers
3k views

Include constant in string without concatenating

Is there a way in PHP to include a constant in a string without concatenating?
8
votes
6answers
1k views

C/C++: Optimization of pointers to string constants

Have a look at this code: #include <iostream> using namespace std; int main() { const char* str0 = "Watchmen"; const char* str1 = "Watchmen"; char* str2 = "Watchmen"; char* ...
6
votes
6answers
305 views

Are string literals const?

Both GCC and Clang do not complain if I assign a string literal to a char*, even when using lots of pedantic options (-Wall -W -pedantic -std=c99): char *foo = "bar"; while they (of course) do ...
6
votes
2answers
3k views

How can I embed unicode string constants in a source file?

I'm writing some unit tests which are going to verify our handling of various resources that use other character sets apart from the normal latin alphabet: Cyrilic, Hebrew etc. The problem I have is ...
5
votes
3answers
34 views

Concatenating __DIR__ constant with a string as an array value which is a class member in PHP

Can anyone tell me why this doesn't work? It's just a crude example of what I'm trying to do somewhere else. class Thing { private $stuff = array( 'key' => __DIR__ . 'value' ); ...
5
votes
5answers
99 views

assigning string::c_str() to a const char* when the string goes out of scope

I have a doubt on basic C++ usage. The code below, compiled with gcc/LInux, prints out correctly. The string test goes out of scope so also its c_str() value should be invalid isn't it? Am I wrong ...
5
votes
3answers
244 views

Best practice for storing application const strings in the code

In my application (C#) i have lots of const messages which are get printed to the log, presented to the user, etc. This const messages are not suppose to change so there is no point putting them in ...
5
votes
2answers
454 views

Most performant way to store large amounts of static strings

in my C# application i need to store huge amounts of constant strings in arrays, like one array for first names and one for last name and so on... These strings never change so my question is how to ...
4
votes
2answers
104 views

How do I turn a macro into a string using cpp?

GNU's cpp allows you to turn macro parameters into strings like so #define STR(x) #x Then, STR(hi) is substituted with "hi" But how do you turn a macro (not a macro parameter) into a string? Say ...
4
votes
2answers
364 views

Regarding Java String Constant Pool

This is regarding the Java String Constant Pool. In one of my Programs i am decrypting the password for the database and storing it in a String. I heard that the Java Strings will be stored in a ...
3
votes
3answers
69 views

Does Java Compiler include String Constant Folding?

I found out that Java supports constant folding of primitive types, but what about Strings? Example If I create the following source code out.write("" + "<markup>" + ...
3
votes
4answers
799 views

How might I define a character or string constant in C# for ASCII 127?

How would one create a char or string constant containing the single character ASCII 127? // Normal printing character - no problems const char VPIPE = '|'; //error "The expression being assigned to ...
3
votes
2answers
671 views

Storing property value names as String constants - performance and memory usage?

I use around 1000 properties associated with a specific java.util.Properties which is backed by a file. The main reason for the file is to change them without recompiling the program and to allow ...
3
votes
1answer
169 views

PHP constant string square bracket indexing

I'm trying to get a constant string and index it as if it was an array of characters (square bracket syntax). When I try this code it fails on the last line. define( ...
3
votes
8answers
339 views

Are string constants overrated?

It's easy to lose track of odd numbers like 0, 1, or 5. I used to be very strict about this when I wrote low-level C code. As I work more with all the string literals involved with XML and SQL, I ...
2
votes
1answer
38 views

Access substring of class constant with array index operator

class Foo { const BAR = 'Hello'; } echo Foo::BAR; //Works echo Foo::BAR[0]; //Parse error: syntax error, unexpected '[', expecting ',' or ';' I've found a way around this by using substr, but I'm ...
2
votes
4answers
94 views

How to define a python string (quasi-)constant that has dynamic inputs?

For example: MY_MESSAGE = 'Dear %s, hello.' # ... name = "jj" print MY_MESSAGE % name Does python have a feature for accomplishing something like my above code?
2
votes
6answers
124 views

Should I use constants instead of strings even if the strings are only ever used once?

I have a piece of code that parses some obscure text file. This text file can contain various keywords. At some point, there is some lengthy part that reads like this: void loadKeywords() { ...
2
votes
4answers
336 views

c++: address to string constant

Can I get the address of an object as a string constant in g++? Example: struct s { } x; If &x == 1234, then I need "1234" in my code. EDIT: By string constant I meant that I need that ...
2
votes
1answer
40 views

When to use explicit string or from a constant string

In terms of strings I understand the need to have strings am going to reuse overname wrapped away somewhere in an XML file or configuration section for strings such as Company Name. The problem am ...
2
votes
4answers
380 views

C++: Define simple constant for use?

In C++ I wanted to define a constant that I can use in another function, A short answer on how to do this will be fine.. Lets say at the beginning of my code I want to define this constant: //After ...
2
votes
2answers
871 views

String Constants Vs Resource Bundle in an Java web Application

From past Year are so, we have developed an application, in which we have used the static String Constants to store the Constants. Like public static final String PAYMENT_CHEQUE = "cheque"; Where ...
2
votes
5answers
2k views

c#:How to use enum for storing string constants? [closed]

Possible Duplicate: Enum with strings is is possible to have string constants in enum like enum{name1="hmmm" name2="bdidwe"} if it is not so what is best way to do so? I tried it ...
2
votes
4answers
885 views

Unfamiliar C syntax in Objective-C context

I am coming to Objective-C from C# without any intermediate knowledge of C. (Yes, yes, I will need to learn C at some point and I fully intend to.) In Apple's Certificate, Key, and Trust Services ...
1
vote
2answers
21 views

php code to grab set of characters from .php file giving error message

Thanks in advance. Getting this warning when using below code: Warning: file_get_contents(test.php) [function.file-get-contents]: failed to open stream: No such file or directory in /path/index.php ...
1
vote
1answer
75 views

Converting a string to a defined constant in PHP

Let's say my I have defined the constant ERROR_0 as follows: define("ERROR_0","An error occurred.") Now, let's say I have the string "ERROR_0" but I want to convert that into the constant ERROR_0 ...
1
vote
1answer
117 views

In C#, why is string.Empty a field instead of a constant? [closed]

Possible Duplicate: Why isn't String.Empty a constant? I can use "" but not string.Empty when specifying default values for method arguments in C# 4.0. This would make sense if ...
1
vote
1answer
124 views

LLVM assembly string constant syntax

I have a few questions about the LLVM assembly string constant syntax. The syntax that I am referring to is this: @helloWorldString = private constant [13 x i8] c"hello world\0A\00" In particular I ...
1
vote
1answer
118 views

xslt unterminated string constant error

for the expression <h1 title="{title}: {short-description}"> if the title contains a single quote in the value, this throws unterminated string constant error . How can i fix this error? ...
1
vote
2answers
91 views

how do i define a constant in a string in PHP?

I am using a constant NEWS_POST_NUMBER and i am getting confused on how to attach it to a string to query it to database. i tried many things and it is giving errors. here is the string i tried. ...
1
vote
2answers
353 views

Why Doesn't Delphi 2009 Give A Message For A String Constant that is Too Long?

It got me stuck for an hour. I happened to have a string constant with about 280 characters in it. I was trying to use Pos to look for a substring within a long string constant. It gives the result 0 ...
1
vote
3answers
234 views

Constant string arrays

Is it possible to have a (fixed) array which stores its elements in the read-only segment of the executable and not on the stack? I came up with this code but unfortunately it is very unflexible when ...
1
vote
3answers
453 views

Cast between String and Classname

I have a string, containing an Class name. It is, for example, a string containing "Article". That string came up from the params[]. What should I do to work with this string as if it was a class ...
1
vote
8answers
189 views

When is it a good use of time to refactor string literals?

I'm starting on a project where strings are written into the code most of the time. Many strings might only be used in a few places but some strings are common throughout many pages. Is it a good ...
0
votes
4answers
52 views

How to get a class from a String?

I'd like to index a hash with a Class (not a symbol !), like the following irb(main):015:0> class Key ;end => nil irb(main):016:0> h={Key => "ok"} => {Key=>"ok"} Good. Then, given ...
0
votes
0answers
25 views

VB importing of DLL functions with build type conditionals

So I'm trying to import a function from a library I'm developing. I have "libraryD.dll" built for debugging and "library.dll" for release. Unfortunately, that means that I have to do this: #If Debug ...
0
votes
1answer
180 views

correct way of declaring string constants that depend on #defines in objective c

I need to declare a bunch of URLs that will be constant but may be different depending on the building configuration. Right now what I have is: A .h file declaring things like: extern NSString * ...
0
votes
1answer
255 views

The expression contains an invalid string constant: '

this code is in Textbox Change event. dds.Tables["IncomeGenerator"].DefaultView.RowFilter = "' Income LIKE '" + txtSearch.Text + "' OR Expenses LIKE '" + txtSearch.Text + "' OR Date LIKE '" + ...
0
votes
1answer
227 views

What's the cause of this Access Violation when concatenating strings in D2007?

I have a procedure that accepts 2 string parameters, one of them has a default value. Inside the procedure, I want to concatenate one and the other and some literals to form one larger string. ...
0
votes
5answers
373 views

What is the best way of comparing a string variable to a set of string constants?

if statement looks too awkward, because i need a possibility to increase the number of constatnts. Sorry for leading you into delusion by that "constant" instead of what i meant.
-1
votes
4answers
145 views

Mapping specific strings to constant integers?

Given a specific set of strings, what's the best way to map them to a corresponding set of integers? Say I have a class with a few integer constants that I use internally, but need to take incoming ...