Tagged Questions
13
votes
7answers
3k views
Where do Java and .NET string literals reside?
A recent question about string literals in .NET caught my eye. I know that string literals are interned so that different strings with the same value refer to the same object. I also know that a ...
8
votes
6answers
152 views
Checking For Equal Instances of 2 Different (Included Example)
I use the == in the code below and prints out "Equals!", why? Can someone explain why these two different strings a and b are equal?
public class test
{
public static void main()
{
...
5
votes
2answers
366 views
Search cost of string interning and declaration of literal strings
Two Questions.
When we declare literal strings, we search whether there is the same string in string pool of heap. Is this also an interning (method intern of class String)?
In my thought, each ...
3
votes
4answers
102 views
What's the counterpart in Java of C#'s @ string literal?
C# has the @ string literal to flexibly handle escape characters in strings. Is there anything like that in Java?
3
votes
1answer
119 views
Is it possible to use a value for a @RequestMapping that is a String but not a String literal?
Is there a way to use an Enum value in a RequestMapping?
@RequestMapping(value = "/example",
method = RequestMethod.POST)
public final void foo(final HttpServletResponse response,
I want to use a ...
3
votes
2answers
72 views
Why isn't “\400” a compile-time error?
Character values between 0 and 255 can be denoted by octal literals from "\000" to "\377".
So shouldn't "\400" be a compile-time error? Eclipse does not complain, however... what's going on here?
3
votes
4answers
542 views
Properly match a Java string literal
I am looking for a Regular expression to match string literals in Java source code.
Is it possible?
private String Foo = "A potato";
private String Bar = "A \"car\"";
My intent is to replace all ...
2
votes
3answers
68 views
Inner-Class and String Literals in Java
Following two cases seem to work:
public class A {
private class B {
public static final String str = "str";
}
}
public class A {
private static class B {
public static ...
1
vote
1answer
109 views
converting string to string literal [closed]
Possible Duplicate:
How would you convert a String to a Java string literal?
Is there a library function that takes a string and converts is into a corresponding string literal? Example:
...
0
votes
1answer
110 views
Understading an example of Strings Literal Pool
According to this article ScjpTipLine-StringsLiterally I was coding some examples like :
public static void main(String[] args) {
String literalString1 = "someString";
String literalString2 = ...
0
votes
4answers
379 views
Does a final String inside a private static method instantiate a new object when invoked?
Does a static final String inside a private static method instantiate a new object when invoked?
private static String Test() {
final String foo = "string literal";
return foo;
}
Or does ...