Naming conventions refer to general rules governing names assigned to programming constructs such as variables and methods. These conventions facilitate improved maintainability of code by enforcing naming consistency across disparate modules.
1
vote
2answers
18 views
Naming Conventions for Multivariable Dependency Tables MySQL
Conventions for normalized databases rule that the best practice for dealing with multivariable dependencies is spinning them off into their own table with two columns. One column is the primary key ...
0
votes
2answers
15 views
Naming convention for Boolean properties
I'm struggeling with the prefixes of my Booleans between Is- and Has-.
Because sometimes Has- make more sens than Is-
Sampe:
bool IsPrintable
bool IsChecked
bool HasDocument
bool HasPermission
...
0
votes
2answers
46 views
C# - Naming conventions for internal members
What are the naming conventions for internal members in C#?
For example, default access modifier for WPF controls is internal - how should I name them?
3
votes
1answer
45 views
Prefixing variables names to indicate their respective scope or origin?
In the companies I've been working, I've seen a lot the use of prefixes to indicate the scope or the origin of variables, for example m for classes members, i for methods intern variables and a (or p) ...
0
votes
1answer
33 views
SQL Naming Conventions
I read this tutorial:
http://leshazlewood.com/software-engineering/sql-style-guide/
but, I got confused about this.
What should I naming SQL in this case.
-My table name: QuestionTypes or ...
0
votes
0answers
24 views
Naming convention for asynchronous getter
For synchronous getter functions, the naming convention is well-defined:
var getFerby = function(){
..
return ferby;
};
However, if the ferby I want is not locally (synchronously) ...
1
vote
1answer
22 views
Enum naming to avoid name clashes
I'm trying to standardise the way I name things, but as a newbie I always seem to come up with an issue somewhere further down the line.
Case in point - I have a user control and enum that clash. The ...
5
votes
2answers
68 views
Any guidance on enum suffix (Kind vs. Type)?
I am designing a .NET API for public use. In my API, there are a bunch of enums, and I'm struggling to decide on a convention to use for suffixes.
In the .NET framework, I see examples of using both ...
1
vote
4answers
74 views
What does the p letter in booleans stand for?
I'm working on some C and TCL libraries which keeps referring to booleans using a convention of addin a p to the end of the variable name, i.e.
set is_registered_p 0
# do stuff
if { $is_registered_p ...
1
vote
2answers
35 views
Distinguishing implementation-specific types and variables in C
Let's say that there's an interface specification "X". X calls for XHeader.h to have a struct called X_Fiddle that guarantees the presence of members foo and bar, both of type int. However, ...
3
votes
3answers
129 views
Multiple variables with same name within one method
I like variables named correctly but in some cases it is very hard to do.
So if my object implements IDisposable then I can use:
using (var whatever = new Whatever()) { //... }
But it is rare ...
0
votes
1answer
32 views
EF5 default table name convention causes 'Invalid object name' exception
I have a model with several entities in my MVC4 project with VS 2012. Recently I added a view to my DB named 'vwTeacherNames' and I tried to update the model and I unchecked the Plorizing option for ...
1
vote
2answers
106 views
C# abstract class naming convention [duplicate]
In C#, the interface naming convention is I<myInterfaceName> (ex: IList).
Are there any naming conventions for abstract classes?
If there aren't, what are the main recommendations?
0
votes
1answer
31 views
Why does rails prefix html ids with underscore notation and can it be changed?
After some research I had begun to start to name all my html divs using hyphens because I read that method carried the most benefits (Naming "class" and "id" HTML attributes - ...
0
votes
1answer
21 views
What does .dist used as an extension of some source code file means?
Examples in the Zend tutorial:
phpunit.xml.dist
local.php.dist
TestConfig.php.dist
0
votes
4answers
72 views
C# naming convention for initialized variable - are there special cases? [closed]
I've spent some time on recapitulating on my knowledge about naming conventions in C# then look over my code and the code of some colleagues with at least 3-4 years experience and I'm not sure if they ...
0
votes
0answers
11 views
Avoid annoying capitalization in WCF-generated WSDL classes?
I prefer to make the fields on my classes readonly whenever possible. This means extra implementation because I can't use automatic properties, but that's an acceptable cost for me. However, this also ...
1
vote
1answer
24 views
ParallelQuery.ForAll and IEnumerable.ForEach
Why these two methods, while having the same semantics have different names (ForAll and ForEach)?
-1
votes
1answer
22 views
PEP 8: Function and method arguments naming convention
From PEP 8 section of Function and method arguments :
Always use self for the first argument to instance methods.
Always use cls for the first argument to class methods.
If a function ...
0
votes
4answers
74 views
Use of underscore in variable names and method names
I got confused with the (Naming convention) use of underscore _ in variable names and method names as their starting letter for example _sampleVariable and _getUserContext(). Could any body clarify ...
2
votes
1answer
59 views
BOOL properties naming in Objective C
I'm not a native speaker so I'm a little bit confused in the following situation. There are well known Apple naming conventions on accessor methods. But they cover only simple cases.
Let's say I have ...
1
vote
3answers
79 views
Method names in Objective-C are the same.
My ViewController Object must implement required Table View methods so it can act as a data source. From UITableView.h:
@required
-(NSInteger)tableView:(UITableView *)tableView
...
0
votes
1answer
26 views
Q about Ruby on Rails Naming Conventions
Quick question. I am an experienced developer but very new to Ruby on Rails. I am wondering how strictly one must follow the naming conventions. For instance, I am in the habit of using camel case ...
-4
votes
2answers
83 views
Best Practices for class naming ( Products or ProductList ) [closed]
Which one of them is better and best practice?
1:
Products or ProductList or ProductCollections
2:
Product or ShowProduct
2
votes
3answers
80 views
What are some best practises for function naming in LiveCode (RunRev)
In the spirit of LiveCode's move towards open source, I have been working on writing some library stacks that would be very useful to the community. I have written libraries on game scoring systems, ...
-2
votes
0answers
79 views
c and c++ naming convention [closed]
I've been trying to standardize my function (and variable) naming conventions in c and c++. I wanted to take a sort of poll, and see what naming conventions people here used. What are your naming ...
0
votes
1answer
47 views
How to deal with the naming convention gap between the frontend (camelCase) and the backend (lower_case_with_underscores)? [closed]
The current project that I am working on uses angularjs/javascript for its frontend and django/python for its backend. The combination of the frameworks/languages that I chose works out pretty well, ...
1
vote
2answers
57 views
Is the method naming for property getters/setters standardized in IL?
I have the following two methods that I am wondering if they are appropriate:
public bool IsGetter(MethodInfo method)
{
return method.IsSpecialName
&& ...
0
votes
1answer
20 views
Naming string variables which point to files and directories [closed]
This is the kind of question where if you ask 10 people, you'll get 10 answers, but I'm trying to work out how best to name the following variables:
Variable 1) A string which points to a folder ...
0
votes
1answer
83 views
Java logging: is it log or logger? [closed]
Every now and then I run across code that looks like this:
private final Logger log = LoggerFactory.getLogger(MyClass.class);
Let's assume this is an slf4j logger object. If one uses Apache Commons ...
2
votes
2answers
59 views
When to use the Y-Namespace
Is there a generally accepted convention among ABAP developers when to use the Y-Namespace and when to use the Z-Namespace for customer repository objects?
0
votes
2answers
50 views
Python module names starting with numerals [duplicate]
When I try to import a module in python(.py file) it gives a syntax error. The module name starts with a numeral. Is that the reason for the syntax error?
0
votes
1answer
25 views
Yii: Naming relations and fields
I wrote some Yii code with the same name for a DB field and a relation:
public function relations()
{
return array(
'kin' => array(self::BELONGS_TO, 'Kin', 'kin'),
'child' ...
2
votes
2answers
43 views
In Ruby, what are the naming conventions for mixins when there is no proper english “<verb>able”?
Example: I have a Person class and a Role class. I want to extract the role functionality from both Role and Person into a mixin. I get two mixins: Actable to be included in Role and Adaptable for ...
1
vote
2answers
42 views
Ruby naming conventions? [closed]
For instance, for constants, is it:
THIS_CONSTANT
This_Constant
ThisConstant
Or something else...?
In fact, is there any sort of (quasi|)official reference for this whole subject?
I'd also like ...
3
votes
1answer
90 views
IntelliSense do not work with extension method when property name is the same as class name
Based on this answer: " Giving a property the same name as its class ", I've started to use property names the same as their class names. But recently I've met a strange corner case and I don't know ...
0
votes
5answers
96 views
Class name convention in java [closed]
What is the naming convention of classes in java, for example should all classes be in upper case like MYCLASS.java ?
as some classes like com.sun.org.apache.bcel.internal.generic. ANEWARRAY. can be ...
4
votes
3answers
134 views
Why is the C++ STL set container's count() method thus named?
What it really checks for is contains() and not the count of the number of occurrences, right? Duplicates are not permitted either so wouldn't contains() be a better name than count()?
0
votes
1answer
26 views
Naming constants on a boilerplate class
I'm creating a boilerplate class to use on every wordpress plugin i create . (Mods feel free to edit if "boilerplate" is not the correct way to call this). I have some constants that I use on all my ...
2
votes
1answer
43 views
image naming convection for ipad mini
I have a question about image naming conventions in universal apps, especially for ipad mini.
I am developing a universal App across iphone 4s, ipad 3 (i.e., ipad with retina), and ipad mini. I have ...
0
votes
0answers
46 views
What does it mean when a definition is surrounded by asterisks? [duplicate]
I see definitions in clojure code that are named like *ns* and I don't know what that means. What does it mean when there are two asterisks surrounding a definition name?
0
votes
1answer
29 views
EL can't handle a single character before an underscore?
I am using EL to pull an object from a bean stored in the session.
The object is question is called P_COV_MOULT and is declared as follows:
this.P_COV_MOULT = new FormField("F_B_P_COV_MOULT","");
...
0
votes
2answers
20 views
maven - Help me understand the tag naming relevance
I needed to add a MainClass to the manifest file in the jar that is generated by the maven. Searching on SO and else-where shows several options- 2 of those are
Approach 1 : Add to ...
0
votes
3answers
71 views
What does a percentage symbol mean as part of a variable name?
I'm just looking at some VB.NET code and I came across this:
Dim var%
Later var is set to 0.
What's the purpose of the percent sign (%)?
(Google and SO search failed me)
4
votes
1answer
41 views
In the source files of an Eclipse plug-in, why are a lot of variables prefixed with “f”?
I'm going through the source code for Eclipse plugins (right now I'm exploring the class TextMergeView) and I notice ALOT of variables are given the starting letter f.
I know that we often give ...
5
votes
9answers
205 views
Would you call it level or depth?
Which word would you pick to label the absolute stack level of an element—in other words its degree of nesting relative to the root/document element?
Between level and depth which one would you ...
0
votes
2answers
67 views
How to name my packages
I worked with object oriented programming for a while now and I also used packages a few times.
But I really wonder if there is an easy way to choose the package names? I know the MVC-Pattern, which ...
0
votes
1answer
25 views
z3 variable naming standards
Is it that z3 doesn't allow variables starting with
__*
After I run the following code in python
__a = BitVec('__a', 3)
Program terminates due to some error but doesn't give the reason ...
0
votes
2answers
33 views
Naming convetion when using hibernate
Me and my team are building java EE app as a school project and we've decided to use hibernate. We also want to make the whole project as nice and clean as possible, so we're trying to follow ...
2
votes
2answers
51 views
Mixing REST API plural and singular for different resources?
Plural form for REST api is more natural and more used e.g. /api/users or api/users/123.
But for some resources is not natural e.g.:
/api/login - log in exact one user
/api/profile - get profile ...







