Tagged Questions
Keywords are special words used as identifiers by a language. They are reserved words accepted by a compiler or interpreter, and thus can't be used as a variable or function name.
65
votes
11answers
23k views
Whats the difference between the 'ref' and 'out' keywords?
I'm creating a function where I need to pass an object so that it can be modified by the function. What is the difference between:
public void myFunction(ref MyClass someClass)
and
public void ...
55
votes
4answers
21k views
What does PHP keyword 'var' do?
This is probably a very trivial question, but I haven't been able to find the answer neither through web search engines, nor on php.net. Please just direct me to where I can read about this, if you ...
44
votes
10answers
7k views
Do you ever use the volatile keyword in Java?
In work today, I came across the volatile keyword in Java. Not being very familiar with it, I found this explaination: http://www.ibm.com/developerworks/java/library/j-jtp06197
Given the detail in ...
42
votes
4answers
14k views
Javascript - “let” keyword vs “var” keyword
In javascript 1.7, the let keyword was added. I've heard it described as a "local" variable, but I'm still not quite sure how it behaves differently than the var keyword.
What are the differences ...
30
votes
8answers
5k views
C# : 'is' keyword and checking for Not
This is a silly question, but you can use this code to check if something is a particular type...
if (child is IContainer) { //....
Is there a more elegant way to check for the "NOT" instance?
if ...
28
votes
13answers
1k views
Why does a programming language need keywords?
For example (in C):
int break = 1;
int for = 2;
Why will the compiler have any problems at all in deducing that break and for are variables here?
So, we need keywords because
we want the ...
27
votes
1answer
766 views
What is the usage of global:: keyword in C#?
What is the usage of global:: keyword in C#? When must we use this keyword?
24
votes
3answers
540 views
C++: Default keyword (classes, not switch)
I've seen default used next to function declarations in a class. What does it do?
class C {
C(const C&) = default;
C(C&&) = default;
C& operator=(const C&) & = default;
...
23
votes
10answers
5k views
“register” keyword in C?
What does the register keyword do in C? I have read that it is used for optimizing but is not clearly defined in any standard. Is it still relevant and if so, when would you use it?
22
votes
6answers
5k views
Is there any reason to use the 'auto' keyword in C / C++?
For the longest time I thought there was no reason to use the static keyword in C, because variables declared outside of block-scope were implicitly global. Then I discovered that declaring a variable ...
21
votes
4answers
2k views
Why does Clojure have “keywords” in addition to “symbols”?
I have a passing knowledge of other Lisps (particularly Scheme) from way back when. My knowledge is pretty rusty (and was pretty basic to begin with). Recently I've been reading about Clojure. I see ...
19
votes
3answers
2k views
Haskell: Where vs. Let
I am new to Haskell and I am very confused by Where vs. Let. They both seem to provide a similar purpose. I have read a few comparisons between Where vs. Let but I am having trouble discerning when to ...
19
votes
6answers
7k views
C# - new keyword in method signature
While performing a refactoring, I ended up creating a method like the example below. The datatype has been changed for simplicity's sake.
I previous had an assignment statement like this:
MyObject ...
18
votes
10answers
5k views
Is there a goto statement in java?
I'm confused about this. Most of us have been told that there is no goto statement in Java.
But I found that it is one of the keyword in Java. Where can it be used? If it can not be used, then why was ...
16
votes
6answers
22k views
Regular Expression to exclude set of Keywords
I want an expression that will fail when it encounters words such as "boon.ini" and "http". The goal would be to take this expression and be able to construct for any set of keywords.
15
votes
5answers
2k views
C++ difference of keywords 'typename' and 'class' in templates
For templates I have seen both declarations:
template < typename T >
And:
template < class T >
What's the difference?
And what exactly do those keywords mean in the following ...
14
votes
14answers
958 views
A real use for `as` and `is`
I have -never- used as or is in C# or any language that supports the keyword.
What have you used it for?
I dont mean how do i use it i mean how have you actually need it?
I also got away with ...
14
votes
8answers
5k views
What's the difference between “keyword” and “reserved word”?
What's the difference between keyword and reserved word?
Fore example in the concepts' proposal one can read the following statement
This proposal introduces five new keywords: concept, concept map, ...
14
votes
3answers
1k views
Practical use of `stackalloc` keyword
Has anyone ever actually used stackalloc while programming in C#? I am aware of what is does, but the only time it shows up in my code is by accident, because Intellisense suggests it when I start ...
13
votes
9answers
23k views
alternative to goto statement in Java
What is an alternative function for goto keyword in java?
Since Java does not have goto.
12
votes
3answers
240 views
Multiple meanings of the C# 'event' keyword?
I was recently re-reading some old posts on Eric Lippert's ridiculously awesome blog and came across this tidbit:
A considerable fraction of the keywords of C# are used in two or more
ways: ...
12
votes
5answers
274 views
Can't use “not”, “or”, or “plus” as identifier?
I tried to compile this:
enum class conditional_operator { plus, or, not };
But apparently GCC (4.6) thinks these are special, while I can't find a standard that says they are (neither C++0x n3290 ...
12
votes
8answers
2k views
Python, why elif keyword?
I just started python programming!
There's one thing I wondered about, the "elif" keyword.
Any other programming languages I used before use simply the "else if" syntax.
Does anyone have an idea why ...
12
votes
6answers
5k views
Is there an ANSI SQL alternative to the MYSQL LIMIT keyword?
Is there an ANSI SQL alternative to the MYSQL LIMIT keyword?
The LIMIT keyword limits the number of rows returned by a SELECT e.g:
SELECT * FROM People WHERE Age > 18 LIMIT 2;
returns 2 rows.
...
11
votes
6answers
575 views
is “unix” restricted keyword in C?
This code does not compile for me on gcc version 4.3.2 (Debian 4.3.2-1.1)
main(){
int unix;
}
I've checked the C keywords list and "unix" is not one of them.
Why am I getting the following ...
11
votes
2answers
3k views
c# var keyword equivalent in java?
so one use the var keyword in c# for implicit type declaration; what is the java equivalent?
11
votes
2answers
527 views
When should clojure keywords be in namespaces?
In clojure, keywords evaluate to themselves, e.g.:
>>:test
:test
They don't take any parameters, and they aren't bound to anything. Why then, would we need to qualify keywords in a ...
11
votes
4answers
802 views
What is the longest legal statement block you can make with only C# keywords?
I was writing some code in C#, and I found myself writing:
return new MyClass(...
when I noticed that both the return and the new were both C# keywords. So I wondered what is the longest legal ...
9
votes
3answers
503 views
Why doesn't LINQ include a `distinct` keyword?
NOTE: Before you read on or provide an answer, I know about Enumerable.Distinct, I am asking about specific language support for that method, not about the method itself.
I've always wondered why ...
9
votes
1answer
1k views
How do I reference a C# keyword in XML documentation?
Title says it all; <see cref="switch" />, for example, doesn't work - I get the compilation warning: XML comment on ... has syntactically incorrect cref attribute 'switch'
Context for those ...
9
votes
6answers
9k views
Continue keyword in Java
I saw this keyword for the first time and I was wondering if some one could explain to me what it does. The situation in which I saw the keyword was:
if(obj.isFlagSet())
;
else
continue;
...
9
votes
2answers
6k views
What is the difference between “AS” and “IS” in an Oracle stored procedure?
I see Oracle procedures sometimes written with "AS", and sometimes with "IS" keyword.
CREATE OR REPLACE Procedure TESTUSER.KILLINSTANCE (INSTANCEID integer) **AS**
...
vs.
CREATE OR REPLACE ...
8
votes
1answer
69 views
Does ascending keyword exist purely for clarity when used with orderby?
If i do a query, ordering elements as below, i get ascending order.
var i = from a in new int[] { 1, 2, 3, 4, 5 }
orderby a
select a;
If i add the ascending keyword i get the same ...
8
votes
3answers
2k views
inline vs __inline vs __inline__ vs __forceinline?
What are the differences between these four inline (key)words?
inline, __inline, __inline__, __forceinline.
8
votes
2answers
2k views
Git equivalent of subversion's $URL$ keyword expansion
I am considering migrating from subversion to git. One of the things we use subversion for our sysadmins to manage things like configuration files. To that end, we put $URL$ into each file, which ...
8
votes
8answers
3k views
Address of register variable
In C, we cannot use & to find out the address of a register variable but in C++ we can do the same. Why is it legal in C++ but not in C? Can someone please explain this concept in-depth.
Thanks, ...
8
votes
6answers
2k views
When would I need to use the stackalloc keyword in C#?
What functionality does the stackalloc keyword provide? When and Why would I want to use it?
7
votes
1answer
145 views
C++ Official Operator Names / Keywords
Happy Holidays guys.
I have been working on a C++ precocessor sequence (using boost) to assist me in generating operator based functors. I have so far completed the source, however I was having ...
7
votes
2answers
321 views
Extract keyphrases from text (1-4 word ngrams)
What's the best way to extract keyphrases from a block of text? I'm writing a tool to do keyword extraction: something like this. I've found a few libraries for Python and Perl to extract n-grams, but ...
7
votes
3answers
159 views
Is there a C# LINQ syntax for the Queryable.SelectMany() method?
When writing a query using C# LINQ syntax, is there a way to use the Queryable.SelectMany method from the keyword syntax?
For
string[] text = { "Albert was here",
"Burke slept ...
7
votes
2answers
280 views
Does C# need the private keyword?
(inspired by this comment)
Is there ever a situation in which you need to use the private keyword?
(In other words, a situation in which omitting the keyword would result in different behavior)
7
votes
2answers
292 views
C# strudel sign
While coding in C#, I by mistake added a strudel sign before a variable in if statement (instead of exclamation mark).
bool b = false;
if (@b)
{
}
I surprised it compiled successfully without any ...
7
votes
1answer
209 views
When and how should independent hierarchies be used in clojure?
Clojure's system for creating an ad hoc hierarchy of keywords is familiar to most people who have spent a bit of time with the language. For example, most demos and presentations of the language ...
7
votes
1answer
1k views
Using special characters as keywords in latex listings package
I am using the listings package for latex. I am using the SQL language definition and am adding some new keywords that I need, using morekeywords=.
I have trouble defining some special characters as ...
7
votes
5answers
414 views
Use the keyword class as a variable name in C++
I am having trouble writing C++ code that uses a header file designed for a C file. In particular, the header file used a variable name called class:
int BPY_class_validate(const char *class_type, ...
7
votes
2answers
705 views
7
votes
6answers
451 views
Why aren't “and” and “or” operators in Python?
I wasn't aware of this, but apparently the and and or keywords aren't operators. They don't appear in the list of python operators. Just out of sheer curiosity, why is this? And if they aren't ...
7
votes
7answers
3k views
Reserved keywords in Objective-C?
At the CocoaHeads Ă–resund meeting yesterday, peylow had constructed a great ObjC quiz. The competition was intense and three people were left with the same score when the final question was to be ...
7
votes
6answers
1k views
C++ alternative tokens?
I've just read this nice piece from reddit.
They mention "and" and "or" being "Alternative Tokens" to && and ||
I was really unaware of these just till now. Of course, everybody knows about ...
7
votes
9answers
2k views
Why does the 'sealed' keyword exist in .Net?
A large number of classes in the .Net framework are marked as 'sealed', preventing you from inheriting those classes with your own. Surely this goes against the nature of object orientation, where you ...