Most voted "reserved-words" questions
9 questions
Sort by count of
-
48
votes3
answers11626
viewsWhat’s the use of the reserved word "Yield"?
What is the use of the keyword (reserved) yield? When and where it is used?
-
11
votes2
answers437
viewsIs declaring a class named after a reserved word a good idea?
Generally, when we define names for class and functions, there is a concern when colliding with the palavras-chaves of language. The curious thing is that I noticed that in PHP it is allowed to…
-
4
votes2
answers1659
viewsWhat is and what is the reserved word "strictfp" for?
I don’t know this keyword, I’ve never seen an example of code in which it was used. Until today I discovered her existence by reading some books about Java, however it was not clear what the utility…
-
4
votes2
answers109
viewsUnix and linux are reserved words?
Even if the variables are not declared unix and linux and even without including anything in my teste.c compiling with the GCC on Linux have: Compilation gcc teste.c -o teste Execution ./teste Exit…
-
3
votes1
answer254
viewsWhat is the real use of the pass in this case?
I am working on the adaptation of a Jango project already created. During the analysis of the code I came across the following excerpt: def objects_delete_action(modeladmin, request, queryset): for…
-
1
votes2
answers5641
viewsWhat is the use of the word "self" in Python?
excuse my ignorance on the subject because I’m starting now in the Python language, and for this very reason I wanted to know what works the reserved word "self". Thanks for your attention and…
-
1
votes2
answers806
viewsWhat is the usefulness of auto keyword in C?
To keyword auto, defined by the language C, is a keyword old and seemingly useless in the language. I know that in C its function is to define that it should be stored in stack as a local variable…
-
0
votes1
answer92
viewsIdentification and marking of SQL script keywords within a Word document
I am making a system error manual for the company where I work. Within this manual you will have a description of the error as well as its solution. Many of the solutions are very extensive SQL…
-
0
votes2
answers655
viewsMysql reserved keywords
When I enter php my admin it displays the following message The column name 'default' is a Mysql reserved keyword. referring to a field called default of my table my question is: this can bring some…