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.

learn more… | top users | synonyms

50
votes
3answers
5k views

Use-case of `oneway void` in Objective-C?

I found a strange keyword in NSObject.h - (oneway void)release; I searched the web, and learned it relates to asynchronous message passing, which looks similar with Erlang's message passing. It ...
37
votes
5answers
9k views

VB.NET equivalent to C# var keyword

Is there a VB.NET equivalent to the C# var keyword? I would like to use it to retrieve the result of a LINQ query.
30
votes
5answers
6k views

Equivalent of “continue” in Ruby

In C and many other languages, there is a continue keyword that, when used inside of a loop, jumps to the next iteration of the loop. Is there any equivalent of this continue keyword in Ruby?
25
votes
7answers
689 views

Problems with adding a `lazy` keyword to C#

I would love to write code like this: class Zebra { public lazy int StripeCount { get { return ExpensiveCountingMethodThatReallyOnlyNeedsToBeRunOnce(); } } } EDIT: Why? I think ...
25
votes
11answers
10k views

When to use friend class in c++

I was just brushing up on my cpp (I'm a java developer) and I came across the Friend class keyword which I forgot about for a while. Is this one of those features that's just part of the kitchen sink, ...
19
votes
4answers
2k views

C# memory management: unsafe keyword and pointers

What are the consequences (positive/negative) of using the unsafe keyword in C# to use pointers? For example, what becomes of garbage collection, what are the performance gains/losses, what are the ...
19
votes
3answers
7k views

What's the yield keyword in javascript?

I heard about a "yield" keyword in javascript, but i found very poor documentation about it. Can someone explain me (or recommend a site that explains) its usage and what it is used for?
19
votes
4answers
12k views

Passing a dictionary to a function in python as keyword parameters

I'd like to call a function in python using a dictionary. Here is some code: d = dict(param='test') def f(param): print param f(d) This prints {'param': 'test'} but I'd like it to just print ...
18
votes
4answers
733 views

Why does the “static” keyword have so many meanings in C and C++?

As we know, the keyword static has multiple meanings in C. C99 added the possibility of legally writing void foo (int arr[static 50]) { // ... } which adds to the confusion, and C++ has static ...
18
votes
2answers
933 views

What is the equivalent in F# of the C# default keyword?

I'm looking for the equivalent of C# default keyword, e.g: public T GetNext() { T temp = default(T); ... Thanks
18
votes
10answers
4k views

When should I use the new keyword in C++?

I've been using C++ for a short while, and I've been wondering about the new keyword. Simply, should I be using it, or not? 1) With the new keyword... MyClass* myClass = new MyClass(); ...
16
votes
5answers
2k views

Do C# static functions perform better than nonstatic functions, beyond reduced memory usage?

I assume that public or private static targets must have reduced memory usage, due to the fact that there is only one copy of the static target in memory. It seems like because a method is static ...
14
votes
7answers
2k views

Missing the 'with' keyword in C#

I was looking at the online help for the Infragistics control library today and saw some VB code that used the With keyword to set multiple properties on a tab control. It's been nearly 10 years ...
14
votes
2answers
1k views

F# keyword 'Some'

F# keyword 'Some' - what does it mean?
13
votes
7answers
542 views

What's the point of “As” keyword in C#

From the docs: The as operator is like a cast except that it yields null on conversion failure instead of raising an exception. More formally, an expression of the form: expression as type ...
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 ...
9
votes
5answers
2k views

Javascript check yield support

i read about the yield keyword in javascript and i need to use it in my project. I read that this keyword has been implemented starting from a certain version of JS so i think that old browsers don't ...
9
votes
4answers
1k views

Is there a way to forbid subclassing of my class?

Say I've got a class called "Base", and a class called "Derived" which is a subclass of Base and accesses protected methods and members of Base. What I want to do now is make it so that no other ...
9
votes
3answers
2k views

Clojure Parameters with Optional Flags

What's the best way to implement keywords as optional flags to a function? I want to make function calls such as: (myfunction 5) (myfunction 6 :do-this) (myfunction 3 :go-here) (myfunction 2 :do-this ...
8
votes
2answers
210 views

Using this keyword in destructor [closed]

While i investigate source code of Qt i saw that trolltech guys explicitly use this keyword to access a field on destructor. inline ~QScopedPointer() { T *oldD = this->d; ...
8
votes
1answer
522 views

C++ Template Default Constructor

I got a little problem with templates: template <typename T> T Func(){ std::string somestr = ""; // somestr = ... if (somestr != ""){ return ...
8
votes
4answers
209 views

this keyword as a property

I know c# well, but it is something strange for me. In some old program, I have seen this code: public MyType this[string name] { ......some code that finally return instance of MyType } How it ...
8
votes
6answers
877 views

What can human beings make out of the restrict qualifier?

If I got the C99 restrict keyword right, qualifying a pointer with it is a promise made that the data it references won't be modified behind the compiler's back through aliasing. By contrast, the way ...
8
votes
8answers
439 views

Best practices for using @ in C#

While reading a book on C#, I have come across code that uses the @ to "overload" or use a C# keyword as an identifier. I am guessing this is not a good practice, as it leads to ambiguity. Am I ...
8
votes
9answers
2k views

Equivalents to SQL Server TOP

In SQL Server, TOP may be used to return the first n number of rows in a query. For example, SELECT TOP 100 * FROM users ORDER BY id might be used to return the first 100 people that registered for a ...
8
votes
12answers
6k views

Should the Java “this” keyword be used when it is optional? [closed]

From what I gather as a Java beginner, when accessing instance members, the "this" keyword may apparently be used, but is not mandatory. I wonder whether there is any official recommendation of sorts ...
7
votes
4answers
151 views

python `in` keyword as a function used in a filter

is it possible to use the python keyword in in a filter? I know that binary, unary, assignment operations are equivalent to a function call. such as ''!=3 is the same as ''.__ne__(3) is there ...
7
votes
3answers
286 views

Is there any keyword in Java which is similar to the 'AS' keyword of C#

As we know C# provides an AS keyword which automatically performs a check whether the Object is of a type and if it is, it then casts it to the needed type else gives a null. public class User { } ...
7
votes
6answers
1k views

What really is the purpose of “base” keyword in c#?

Thus for used base class for some commom reusable methods in every page of my application... public class BaseClass:System.Web.UI.Page { public string GetRandomPasswordUsingGUID(int length) { ...
7
votes
7answers
656 views

Getting the the keyword arguments actually passed to a Python method

I'm dreaming of a Python method with explicit keyword args: def func(a=None, b=None, c=None): for arg, val in magic_arg_dict.items(): # Where do I get the magic? print '%s: %s' % (arg, ...
7
votes
4answers
1k views

How to emulate keyword arguments in ActionScript 3 functions

Functions in Python can be called using keyword arguments of the form keyword = value. For instance, the following function: def parrot(voltage, state='a stiff', action='voom', type='Norwegian ...
6
votes
4answers
223 views

Uses of Python's “from” keyword?

Are there any other uses for Python's "from" keyword aside from import statements?
6
votes
2answers
201 views

make keyword into link automatically, globally

is there a way to make a every instance of a word automatically turn into a link? so for instance, everytime I write "apple", it is automatically formatted to <a href="www.apple.com" ...
6
votes
3answers
831 views

Why is the 'this' keyword not a reference type in C++ [closed]

Possible Duplicates: Why ‘this’ is a pointer and not a reference? SAFE Pointer to a pointer (well reference to a reference) in C# The this keyword in C++ gets a pointer to the ...
6
votes
3answers
693 views

What effect does the “new” keyword have in C# and why is it only a warning when not employed?

Consider the following code: public abstract class Test1 { public object Data { get; set; } } public abstract class Test2<T> : Test1 { public T Data { get; set; } } This will ...
6
votes
3answers
1k views

jQuery $this vs $(this) in plugin development

I was wondering why in so many jquery plugins $(this) is set to be pointing at $this, here is an example, if i have the following two plugins included on a page: (function($) { jQuery.fn.pluginOne ...
6
votes
4answers
153 views

How would you explain the risks of the $Log$ keyword?

I seem to get into an annual debate about the use of the $Log$ keyword. My point of view is this: $Log$ is white hot death. All it does is jam marginally relevant spam into your source files. ...
5
votes
1answer
169 views

Why virtual keyword is used in C# master-detail model?

Refer to the EntityFramework article, and other ASP MVC webinars from Microsoft such as; 1: http://www.asp.net/mvc/videos/5-minute-introduction-to-aspnet-mvc 2: ...
5
votes
7answers
279 views

In C++ why isn't “assert” a keyword?

Now "static_assert" is a keyword in C++0x I thought it would be logical to replace the C "assert" macro with an "assert" keyword too.
5
votes
2answers
242 views

Mercurial keywords extension to expand on every commit

I need to use the hg keyword extension to embed the build date and revision into a source file. Leaving aside the whole "you really don't want to be doing that" argument, how can I do this? Here's ...
5
votes
5answers
495 views

Java method keyword “final” and its use

When I create complex type hierarchies (several levels, several types per level), I like to use the final keyword on methods implementing some interface declaration. An example: interface Garble { ...
5
votes
4answers
753 views

The C++ 'new' keyword and C [closed]

Possible Duplicate: Use the keyword class as a variable name in C++ In a C header file of a library I'm using one of the variables is named 'new'. Unfortunately, I'm using this library in a ...
5
votes
9answers
2k views

When NOT to use the static keyword in Java?

When is it considered poor practice to use the static keyword in Java on method signatures? If a method performs a function based upon some arguments, and does not require access to fields that are ...
5
votes
4answers
143 views

Is there a difference between using “this” and “prototype” in Javascript here?

Is there a difference between the two codes below, I presume not. function Agent(bIsSecret) { if(bIsSecret) this.isSecret=true; this.isActive = true; this.isMale = false; } and ...
5
votes
7answers
1k views

C: Behaviour of the `const` keyword

I've been told that if I'm coding in ANSI-C to declare in the order that the variables will be used, assert that pointers are not null and that indices are within bounds, and to initialize just before ...
4
votes
2answers
78 views

How can I have optional arguments AND keyword arguments to the same function?

I am trying to write a Lisp function that can take optional and keyword arguments. The function begins (defun max-min (v &optional max min &keyword (start 0) (end nil)) When I try to call ...
4
votes
5answers
137 views

What does object @object mean

I've been playing around with events and delegates and need to raise my event asynchronously, thus I've been using: public event EventHandler OnHelloEvent; public void Raise() { IAsyncResult ...
4
votes
1answer
85 views

Adding a keyword to VB.net? (“Exists” vs “IsNot Nothing”)

IsNot Nothing is very common, but it's a double negative =o I'd like to use Exists instead. Is there someway I can add a keyword to my VB vocab? For now, I wrote an extension that adds _Exists() as ...
4
votes
0answers
113 views

What is google's stand on keyword spamming? [closed]

I have seen several apps using "keywords" , "tags" at the bottom of application description. obviously such apps rank higher than my app (FYI i am not using keywords/tags) for these keywords in search ...
4
votes
2answers
170 views

What does the 'native' keyword mean in JavaScript?

I stumbled upon a function called v8Locale in Chrome's Developer Console. I was curious so I entered the function to get the source code, and it revealed the following code: function (a){ native ...

1 2 3 4 5