Tagged Questions

A language feature is a distinct aspect of a programming language, such as binding rules, lexical design, or facets of the type system.

learn more… | top users | synonyms

182
votes
17answers
141k views

What is the best way to check for an empty string in JavaScript?

I saw this thread, but I didn't see a JavaScript specific example. Is there a simple string.Empty in JavaScript, or is it just checking for "" ?
140
votes
14answers
12k views

Expression Versus Statement

I'm asking with regards to c#, but I assume its the same in most other languages. Does anyone have a good definition of expressions and statements and what the differences are. Thanks in advance.
113
votes
40answers
14k views

Hidden features of HTML [closed]

HTML being the most widely used language (at least as a markup language) has not gotten its due credit. Considering that it has been around for so many years, things like the FORM / INPUT controls ...
109
votes
23answers
26k views

Are there legitimate uses for JavaScript's “with” statement?

Alan Storm's comments in response to my answer regarding the with statement got me thinking. I've seldom found a reason to use this particular language feature, and had never given much thought to how ...
83
votes
9answers
2k views

Why are private fields private to the type, not the instance?

In C# (and many other languages) it's perfectly legitimate to access private fields of other instances of the same type. For example: public class Foo { private bool aBool; public void ...
83
votes
8answers
16k views

Can You Loop Through All Enum Values? c#

public enum Foos { A, B, C } Is there a way to loop through the possible values of Foo? Basically? foreach(Foo in Foos)
67
votes
15answers
24k views

Why Doesn't C# Allow Static Methods to Implement an Interface?

Why was C# designed this way? As I understand it, an interface only describes behaviour, and serves the purpose of describing a contractual obligation for classes implementing the interface that ...
59
votes
15answers
2k views

Do You Really Know Your Programming Languages?

I am often amazed at how little some of my colleagues know or care about their craft. Something that constantly frustrates me is that people don't want to learn any more than they need to about the ...
58
votes
28answers
3k views

Best javascript syntactic sugar

Here are some gems: Literals: var obj = {}; // Object literal, equivalent to var obj = new Object(); var arr = []; // Array literal, equivalent to var arr = new Array(); var regex = /something/; // ...
58
votes
12answers
27k views

Will a future version of .NET support tuples in C#?

.Net 3.5 doesn't support tuples. Too bad, But not sure whether the future version of .net will support tuples or not?
55
votes
1answer
662 views

Problem understanding C# type inference as described in the language specification

The C# language specification describes type inference in Section §7.5.2. There is a detail in it that I don’t understand. Consider the following case: // declaration void Method<T>(T obj, ...
52
votes
7answers
33k views

How do you find out the caller function in JavaScript?

function main() { Hello(); } function Hello() { // How do you find out the caller function is 'main'? } Is there a way to find out the call stack at all?
50
votes
3answers
8k views

Python: create a dictionary with list comprehension

I like the python list comprehension operator (or idiom, or whatever it is). Can it be used to create dictionaries too? For example, by iterating over pairs of keys and values: dict = {(k,v) for ...
49
votes
30answers
6k views

Poll: What is stopping you from switching (from Java) to Scala? [closed]

What would make you to switch to Scala ? If you are negative on the switching to Scala, please state the reason as well (or upvote). As with all StackOverflow Poll type Q&As, please make ...
48
votes
5answers
14k views

How does “this” keyword work within a JavaScript object literal?

I just came across an interesting situation in Javascript. I have a class with a method that defines several objects using object-literal notation. Inside those objects, the this pointer is being ...
46
votes
7answers
7k views

What is the tilde (~) in a C# enumeration?

I'm always surprised that even after using C# for all this time now, I still manage to find things I didn't know about... I've tried searching the internet for this, but using the "~" in a search ...
45
votes
9answers
56k views

JavaScript Hashmap Equivalent

As made clear in update 3 on this answer, this notation: var hash = {}; hash[X] does not actually hash the object X; it actually just converts X to a string (via .toString() if it's an object, or ...
41
votes
7answers
3k views
38
votes
19answers
2k views

Have you ever restricted yourself to using a subset of language features?

Have you ever restricted yourself to using a subset of language features, and more importantly, why? I'm curious to find out who choose to use only certain language features and avoid others in order ...
37
votes
4answers
10k views

VB.net equivalent of C# Property Shorthand?

Is there a VB.net equivalent to the C#: public string FirstName { get; set; } I know you can do Public Property name() As String Get Return _name.ToString End Get Set(ByVal value ...
34
votes
9answers
18k views

Difference between parseInt and valueOf in java?

What's the difference between these two methods? They appear to do exactly the same thing to me (also goes for parseFloat(), parseDouble(), parseLong() etc, how are they different from ...
31
votes
6answers
8k views

How to Correctly Use Lists in R?

Brief background: Many (most?) modern programming languages in widespread use have at least a handful of ADTs [abstract data type] in common, in particular, string (a (sequence comprised of ...
31
votes
14answers
7k views

What's so great about Scala? [closed]

What makes Scala such a wonderful language, other than the type system? Almost everything I read about the language brings out 'strong typing' as a big reason to use Scala, but there has to be more ...
31
votes
48answers
5k views

Language features you should never use?

A recent post about the 'with' statement in Delphi - which in practice I never use because it trades clarity and ease of debugging for superficially 'cleaner' looking code got me thinking; what other ...
30
votes
8answers
3k views

Why is there a `null` value in JavaScript?

In JavaScript, there are two values which basically say 'I don't exist' - undefined and null. A property to which a programmer has not assigned anything will be undefined, but in order for a property ...
29
votes
16answers
4k views

Samples of Scala and Java code where Scala code looks simpler/has fewer lines?

I need some code samples (and I also really curious about them) of Scala and Java code which show that Scala code is more simple and concise then code written in Java (of course both samples should ...
29
votes
3answers
2k views

Why isn't the eigenclass equivalent to self.class, when it looks so similar?

I've missed the memo somewhere, and I hope you'll explain this to me. Why is the eigenclass of an object different from self.class? class Foo def initialize(symbol) eigenclass = class << ...
29
votes
8answers
9k views

DateTime.Now vs. DateTime.UtcNow

I've been wondering what exactly are the principles of how the two properties work. I know the second one is universal and basically doesn't deal with time zones, but can someone explain in detail how ...
27
votes
8answers
3k views

Javascript as a functional language

I am looking get to grips with functional programming concepts. I've used Javascript for many years for client side scripting in web applications and apart from using prototypes it was all simple DOM ...
23
votes
8answers
972 views

What is the python “with” statement designed for?

I came across the Python with statement for the first time today. I've been using Python lightly for several months and didn't even know of its existence! Given its somewhat obscure status, I ...
22
votes
10answers
1k views

Are there any disadvantages of using C# 3.0 features?

I like C# 3.0 features especially lambda expressions, auto implemented properties or in suitable cases also implicitly typed local variables (var keyword), but when my boss revealed that I am using ...
22
votes
9answers
1k views

Can someone demystify the yield keyword?

I have seen the yield keyword being used quite a lot on Stack Overflow and blogs. I don't use LINQ. Can someone explain the yield keyword? I know that similar questions exist. But none really ...
21
votes
2answers
432 views

Why doesn't Java varargs support collections?

In my Java code I often use the very handy method(Class... args) varargs. As far as I know, they allow you to pass any amount of Class objects or an array of Class[]. Since I also often use the Java ...
21
votes
6answers
2k views

Should I use C++0x Features Now?

With the official release of VS 2010, is it safe for me to start using the partially-implemented C++0x feature set in my new code? The features that are of interest to me right now are both ...
21
votes
24answers
2k views

What features should Java 7 onwards have to encourage switching from C#?

C# has a good momentum at the moment. What are the features that you would need to have in order to switch (or return) to Java? It would also be quite useful if people posted workarounds for these ...
21
votes
15answers
2k views

Does C# have too many language features?

This is a discussion that pops a from time to time in our team. While a few quickly learned C# 3.0 features, other stick with classical techniques. Some never use Linq, think that lambda expressions ...
21
votes
4answers
6k views

What is the purpose of python's inner classes?

Python's inner/nested classes confuse me. Is there something that can't be accomplished without them? If so, what is that thing?
21
votes
11answers
3k views

Hidden Features of F#

This is the unabashed attempt of a similar C# question. So what are your favorite F# hidden (or not) features? Most of the features I've used so far aren't exactly hidden but have been quite ...
21
votes
61answers
13k views

Language showdown: Convert string of digits to array of integers? [closed]

I was trying to convert a string containing only base 10 digits (e.g. "124890") to an array of corresponding integers (for given example: [1, 2, 4, 8, 9, 0]), in Ruby. I'm curious about how easily ...
20
votes
5answers
1k views

Why C# doesn't implement indexed properties?

I know, I know... Eric Lippert's answer to this kind of question is usually something like "because it wasn't worth the cost of designing, implementing, testing and documenting it". But still, I'd ...
19
votes
30answers
1k views

What features would you add, remove or change in F#?

I've been reading and coding in F# as a hobby for a year now. As I prepare to deploy some code in production, I would like to hear what the SO community thinks could be improved in the language, and ...
18
votes
13answers
691 views

Using new languages in an Apache/PHP/JavaScript world

I am stuck in a MySQL/Apache/PHP/JavaScript world. Is it possible to stay inside that stack yet incorporate other languages and technologies to advantage and increase interest? The idea is to ...
17
votes
14answers
2k views

Simplest language to make an interpreter for

I want to make an interpreter of a very simple language for practice. When I say simple I don't mean easy to use, I mean simple. Brainf**k is a good example of a language I want. I already have made a ...
17
votes
10answers
741 views

Does this language feature already exist?

I'm currently developing a new language for programming in a continuous environment (compare it to electrical engineering), and I've got some ideas on a certain language construction. Let me explain ...
17
votes
12answers
2k views

Lesser known language constructs of Object Pascal (Delphi) [closed]

With the introduction of Delphi 2009, a lot of features are added to the Object Pascal language. Almost anybody knows about generics and closures, but there are more, and not all of them are ...
16
votes
6answers
603 views

Should I prefer static methods in C#

Having spent a bit of time learning about functional programming, it's becoming more and more natural for me to want to work with static methods that don't perform any mutation. Are there any reasons ...
16
votes
11answers
953 views

Is it bad practice to use C features in C++?

For example printf instead of cout, scanf instead of cin, using #define macros, etc?
16
votes
8answers
587 views

What is the purpose of case sensitivity in languages? [closed]

Possible Duplicates: Is there any advantage of being a case-sensitive programming language? Why are many languages case sensitive? Something I have always wondered, is why are languages ...
16
votes
2answers
4k views

Equivalent of Class Loaders in .NET

Does anyone know if it possible to define the equivalent of a "java custom class loader" in .NET? To give a little background: I am in the process of developing a new programing language that ...
16
votes
4answers
883 views

Any chances to imitate times() Ruby method in C#?

Every time I need to do something N times inside an algorithm using C# I write this code for (int i = 0; i < N; i++) { ... } Studying Ruby I have learned about method times() which can be ...

1 2 3 4 5 11