Tagged Questions

16
votes
37answers
1k views

What are your language “hangups”? [closed]

I've read some of the recent language vs. language questions with interest... Perl vs. Python, Python vs. Java, Can one language be better than another? One thing I've noticed is that a lot of us ...
13
votes
4answers
166 views

Why can this kind of statement work in PHP?

$user->Phonenumbers[]->phonenumber = '123 123'; $user->Phonenumbers[]->phonenumber = '456 123'; $user->Phonenumbers[]->phonenumber = '123 777'; I've never seen this kind of syntax ...
12
votes
6answers
711 views

Why is 'last' called 'last' in Perl?

What is the historical reason to that last is called that in Perl rather than break as it is called in C? The design of Perl was influenced by C (in addition to awk, sed and sh - see man page below), ...
9
votes
6answers
187 views

Which syntax options/language features did Scala remove over time (and why)?

The title pretty much sums up my question. The deprecation and removal of case class inheritance is a pretty new one, and I wonder which things got removed/substantially changed before that. I ...
5
votes
1answer
1k views

What advantages does Sass provide over regular CSS?

I'm trying to decide on technologies for a presentation layer. I have heard Sass talked about enthusiastically but am resistant to learn something new without knowing why it's better than the ...
3
votes
3answers
184 views

Appended '= x' after a method declaration in c++

In C++, when a method is declared, I've noticed that sometime the method may have an assignement appended to it. Could anyone tell me what this is? For example: virtual void MyMethod () = 0; What ...
3
votes
3answers
110 views

What is the official name for this syntax feature?

What is the name of the character at the end of each of these lines? Dim _int As Integer = 1I Dim _short As Short = 1S Dim _long As Long = 1L Dim _single As Single = 1.0F Dim _double As Decimal = 1D ...
3
votes
2answers
134 views

What syntax sugar or language features makes a language hard/tough to parse?

I did some searching and didn't find a question that "directly" answered this question. Anyway the basic gist of this question is I am wondering what "language feature" or "syntax" that makes a ...
3
votes
1answer
256 views

Syntax choice for type parameter variance in C# and VB

In both C# and VB, type parameter modifiers are used to express the variance of type parameters. For example, the C# version looks like: interface Foo<in X, out Y> { } and the VB version ...
3
votes
6answers
642 views

Ruby: More flexibility than Java/C#?

Is is that I'm a newbie learning Ruby, or does it really have more ways to write (the same) things than Java/C#? Also, if it is more flexible than Java, are there any linguistic features of Ruby that ...
2
votes
2answers
40 views

for object in collection where object inherits

In objective-c, is for (Foo *foo in fooList) ... more like which of the following @interface Bar : Foo ... for (Foo *f in fooList) { // A: if ([f isMemberOfClass:[Foo class]]) ... // dont ...
2
votes
4answers
387 views

Is There a Syntax Shortcut for Multiple Initialization in C#?

Is there a way to do this: valueType x = 1, y = 1, z = 1; with less characters? e.g. When I have a large amount of state to initialize to the same starting value. Thanks!
2
votes
3answers
204 views

What is the use of the := syntax?

I'm a C# developer working on a VB.NET project, and VS keeps trying to get me to use the := thingie when I call a function with a ByRef parameter like so: While reader.Read() ...
1
vote
4answers
206 views

F# shorthand to call method on object in lambda

I think this is somewhat related to this question, but being not sure and since there's no real answer there, here I go: in Scala there's you can write code such as: ...
1
vote
3answers
231 views

Combined post-operators?

We're all familiar with the pre- and post-increment operators, e.g. c++; // c = c + 1 ++c; // ditto and the "combined operators" which extend this principle: c += 5; // c = c + 5 s .= ", ...
0
votes
3answers
175 views

objective-c modalViewController too quick

    I am having an issue dismissing a modal view controller on a certain edge case. I display the modal view when I am retrieving a PDF to display in a UIWebView. When the file I ...