Tagged Questions
The identifiers tag has no wiki summary.
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 ...
9
votes
7answers
650 views
Is it a good idea to use unicode symbols as Java identifiers?
I have a snippet of code that looks like this:
double Δt = lastPollTime - pollTime;
double α = 1 - Math.exp(-Δt / τ);
average += α * (x - average);
Just how bad an idea is it to use unicode ...
6
votes
3answers
166 views
What are the benefits of PHP6 Unicode Identifiers
I was reading a nice slide titled Unicode & PHP6 and i found every new feature very good.
Except unicode identifers:
Am i missing something? Isn't this is evil for PHP script understanding ...
6
votes
8answers
172 views
Better identifier names?
How can I train myself to give better variable and function names (any user-defined name in a program).
6
votes
4answers
869 views
Is there a method in C# to check if a string is a valid identifier
In Java, there are methods called isJavaIdentifierStart and isJavaIdentifierPart on the Character class that may be used to tell if a string is a valid Java identifier, like so:
public boolean ...
4
votes
3answers
195 views
VB.NET, what is the difference between Boolean and [Boolean]?
I ran some code through an automatic translator for C# to VB, and it translated some code like this:
Public Property Title As [String]
How is this different to
Public Property Title As String
...
4
votes
6answers
2k views
Are dollar-signs allowed in identifiers in C++?
What does the C++ standard say about using dollar signs in identifiers, such as Hello$World? Are they legal?
4
votes
7answers
298 views
What data type do you use for storing IDs?
Why is there a minimum character count for posting questions? o.O
Anyway, my question is as clear as can be from the title. Do you use int, bigint, tinyint, whatever.
It seems like a small thing I ...
3
votes
5answers
406 views
Proper way of having a unique identifier in Python?
Basically, I have a list like: [START, 'foo', 'bar', 'spam', eggs', END] and the START/END identifiers are necessary for later so I can compare later on. Right now, I have it set up like this:
START ...
3
votes
37answers
436 views
Should identifiers and comments be always in English or in the native language of the application and developers [closed]
Given a programming language (such as Java) that allows you to use non-ASCII identifiers (class, method, variable names), and an application written for non-English users, by developers who speak ...
2
votes
3answers
295 views
C universal macro names - gcc -fextended-identifiers
Hi I'm looking for how can I write identifiers name with characters like [ ' " or #.
Everytime that I try to do that, I give the error:
error: macro names must be identifiers
But learning about ...
2
votes
5answers
548 views
Retrieving data from a JSON sub array in javascript, where identifier starts with an integer
I must be missing something simple here, but I'm having trouble retrieving data from a JSON array response. I can access objects with identifiers that start with letters, but not ones that start with ...
2
votes
2answers
226 views
FXCop violation CA1716 IdentifiersShouldNotMatchKeyword - is this really a problem?
We have recently started using FxCop on our code base and I am in the process of evaluating the problems. One is the IdentifiersShouldNotMatchKeywords issue. This applies to a namespace ...
1
vote
3answers
77 views
database storing multiple types of data, but need unique ids globally
a while ago, i asked about how to implement a REST api. i have since made headway with that, but am trying to fit my brain around another idea.
in my api, i will have multiple types of data, such as ...
1
vote
2answers
98 views
Unicode identifiers (function names) for non-localization purposes advisable?
PHP allows Unicode identifiers for variables, functions, classes and constants anyhow. It was certainly intended for localized applications. Wether it's a good idea to code an API in anything but ...
1
vote
2answers
117 views
Raise PostgreSQL's NAMEDATALEN without recompiling
Is it possible to raise the identifier name limit, in PostgreSQL, to above 63 characters, without having to recompile all the database system? I have this Django project generating repeated index ...
1
vote
2answers
360 views
NServiceBus, NHibernate, and GuidComb()
Disclaimer: This is a follow-on question from my other question about NServiceBus which was answered very thoroughly.
My current question is this: If a website is built to be 'dumb' like the article ...
1
vote
2answers
196 views
Does this Ruby code look up identifiers or the values associated with them?
I've been trying to understand this example Ruby code from a blog entry which says it uses the symbols :DEFAULT, :say and :@message "to look up identifiers". But from what I can tell, it's not looking ...
0
votes
1answer
50 views
Facebook Single Sign-On opens wrong app
Hey guys I have an issue with the Facebook iOS SDK. Here is what happens:
I have one Facebook app
I have 2 versions of my iPhone app (one free, one paid), so 2 different bundle identifiers ...
0
votes
0answers
21 views
Translating identifiers and comments from French to English
I have reviewed Which tools can help in translating (as in french -> english and not C++ -> java) source code?.
I want to convert PB Code with french identifiers and comments to english.
Do ...
0
votes
2answers
179 views
Problems with iAd changes in 4.2
Im trying to use iAds in my app but I want to support all versions from 4.0 upwards. However the code for setting the current size identifier has changed in the 4.2 sdk, it used to be:
...
-2
votes
5answers
62 views
Identifier error in C…Help?
I've been working on the same assignment all day and yet just when I'm done and I try to debug it...I get this error:
assign4.c:56:1: error: expected identifier or ‘(’ before ‘{’ token
...