vote up 1 vote down star

In C#, if you want a String to be taken literally, i.e. ignore escape characters, you can use:

string myString = @"sadasd/asdaljsdl";

However there is no equivalent in Java. Is there any reason Java has not included something similar?

Edit:

After reviewing some answers and thinking about it, what I'm really asking is:
Is there any compelling argument against adding this syntax to Java? Some negative to it, that I'm just not seeing?

flag

71% accept rate

8 Answers

vote up 5 vote down

Java has always struck me as a minimalist language - I would imagine that since verbatim strings are not a necessity (like properties for instance) they were not included.

For instance in C# there are many quick ways to do thing like properties:

public int Foo { get; set; }

and verbatim strings:

String bar = @"some
string";

Java tends to avoid as much syntax-sugar as possible. If you want getters and setters for a field you must do this:

private int foo;

public int getFoo() { return this.foo; }
public int setFoo(int foo) { this.foo = foo; }

and strings must be escaped:

String bar = "some\nstring";

I think it is because in a lot of ways C# and Java have different design goals. C# is rapidly developed with many features being constantly added but most of which tend to be syntax sugar. Java on the other hand is about simplicity and ease of understanding. A lot of the reasons that Java was created in the first place were reactions against C++'s complexity of syntax.

link|flag
Java 7 will have properties also :) – Andrew Dashin Mar 8 at 16:51
It's a bit hard to characterize a language where you can write "new HashMap<Integer,ArrayList<? extends .. " as minimalist :) – Steve B. Mar 8 at 17:02
Heh, Java is only "minimalist" in a very specific sense. I see what you mean, and I agree. But at the same time, it is also an incredibly big and bloated language, trying to be everything for everyone. :) But yes, it seems like Java dislikes shortcuts. – jalf Mar 8 at 17:03
I'm just still in shock that Sun's explanation for not including unsigned types was something like "most people don't know what those are". – Spencer Ruport Mar 8 at 17:41
@jalf - well put "dislikes shortcuts" is moe accurate than "minimalist" :) – Andrew Hare Mar 8 at 17:57
show 1 more comment
vote up 2 vote down

I find it funny "why" questions. C# is a newer language, and tries to improve in what is seen as shortcomings in other languages such as Java. The simple reason for the "why" question is - the Java standard does not define the @ operator such as in C#.

link|flag
Just a nitpick: @ isn't an operator. It's just part of the syntax for a verbatim string literal. – Jon Skeet Mar 8 at 16:51
Thanks for the clarification, Jon. – ocdecio Mar 8 at 16:54
vote up 0 vote down

I think this question is like: "Why java is not indentation-sensitive like Python?" Mentioned syntax is a sugar, but it is redundant (superfluous).

link|flag
vote up 1 vote down

I think one of the reasons is that regular expressions (which are a major reason for these kind of String literals) where not part of the Java platform until Java 1.4 (if I remember correctly). There simply wasn't so much of a need for this, when the language was defined.

link|flag
OTOH, inlined SQL was more common in the olden days. – Tom Hawtin - tackline Mar 9 at 12:01
@Tom: yes, but encouraging SQL injection attacks wasn't high on the priority list ;-) PreparedStatements don't have a problem with escaping. – Joachim Sauer Mar 9 at 14:04
vote up 0 vote down

I am not sure on the why, but you can do it by escaping the escape character. Since all escape characters are preceded by a backslash, by inserting a double backslash you can effectively cancel the escape character. e.g. "\now" will produce a newline then the letters "ow" but "\now" will produce "\now"

link|flag
Have you read the question? – Jan Jungnickel Mar 8 at 16:55
vote up 0 vote down

You should find your IDE handles the problem for you. If you are in the middle of a String and copy-paste raw text into it, it should escape the text for you.

PERL has a wider variety of ways to set String literals and sometimes wish Java supported these as well. ;)

link|flag
Off-topic: it's Perl, not PERL. – nxadm Mar 8 at 17:31
vote up 1 vote down

Like said, mostly when you want to escape characters is for regexes. In that case use: Pattern.quote()

link|flag
vote up 0 vote down

Java (unfortunately) doesn't have anything like this, but Groovy does:

assert '''hello,
world''' == 'hello,\nworld'
//triple-quotes for multi-line strings, adds '\n' regardless of host system
assert 'hello, \
world' == 'hello, world' //backslash joins lines within string

I really liked this feature of C# back when I did some .NET work. It was especially helpful for cut and pasted SQL queries.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.