A language feature is a distinct aspect of a programming language, such as binding rules, lexical design, or facets of the type system.
Java has generics and C++ provides a very strong programming model with templates. So then, what is the difference between …
java c++ generics templates language-featuresI just came across an interesting situation in JavaScript. I have a class with a method that defines several objects …
javascript language-features language-designSo I'm learning java, and I have a question. It seems that the types int, boolean and string will be …
java variables types language-featuresThis came up at the office today. I have no plans of doing such a thing, but theoretically could you …
sql tsql programming-languages language-featuresAlan Storm's comments in response to my answer regarding the with statement got me thinking. I've seldom found a reason …
javascript language-features with-statementC and many other languages have a conditional (aka ternary) operator. This allows you to make very terse choices between …
python c language-featuresIs there a VB.NET equivalent to the C#: public string FirstName { get; set; } I know you can do Public …
c# vb.net language-featuresPython's inner/nested classes confuse me. Is there something that can't be accomplished without them? If so, what is that …
python class oop language-featuresI 'm trying to do : award_dict = { "url" : "http://facebook.com", "imageurl" : "http://farm4.static.flickr.com/3431/3939267074_feb9eb19b1_…
python dictionary language-design language-featuresI would like to properly understand hashes in Perl. I've had to use Perl intermittently for quite some time and …
perl hash language-features hash-reference