Declaration is the part of the subprogram (procedure or function) which provides the protocol(header), but not the body of the subprogram.

learn more… | top users | synonyms

0
votes
3answers
76 views

Can you do shorter declarations in C#?

I always write long declares, like: private Dictionary<IPAddress, IWebSocketConnection> Dict = new Dictionary<IPAddress, IWebSocketConnection>(); Is there a way to write it like this: ...
0
votes
2answers
28 views

Declared and initiated variable returning values when printed

The issue arises with the variable shortestval below. It's declared and initialised (at 1000) below. ENSEMBLE Cscan = *C; ENSEMBLE Vscan = *V; int departnumero = Vscan->numero, arrivenumero = ...
0
votes
1answer
12 views

ICMP_ECHO_REPLY32 and IP_OPTION_INFORMATION32

In one of my vb6 code i am using IP_OPTION_INFORMATION and ICMP_ECHO_REPLY which i have declared as Private Type IP_OPTION_INFORMATION Ttl As Byte Tos As Byte Flags ...
0
votes
1answer
12 views

Is better variable declaration and allocation in the same line than in different lines?

It is a pure style question, but, the code is more readable in the first or in the second way? There are rules that talk about it? (I think that the code efficiency is the same, or it isn't?)
1
vote
1answer
23 views

Variable as a part of variable name in it's declaration? Dealing with chart series

Is there a way how can I declare variables in a for loop and using the "int i" as a part of the variable name? I'm trying to set some adjustments of my excel chart in a for loop and assigning ...
0
votes
3answers
58 views

Why does is declaration of a string variable in Java capitalized?

In Java, when one declares a string variable the word "String" is capitalized, yet it isn't in any of the other types I've run across. Why is this? Was it just some weird arbitrary decision by the ...
4
votes
1answer
62 views

detecting equivalence of typedefs

In my application, I have a type responsible for computations that (may) involve large numbers and a type that is used for communication between processors. typedef MyBigIntegerClass bigInt; typedef ...
3
votes
4answers
55 views

How is this pre-standard function declaration compiled with modern compiler?

I found the following declaration code in the very early sources of C compiler main(argc, argv) int argv[]; { return 0; } I tried to run it on ideone.com compiling it in "C" mode with gcc-4.7.2 ...
0
votes
2answers
71 views

What is the meaning of “l” in some variables initialization - C++ [duplicate]

What is the meaning of "l" in some variable initialisations? For example: #define maxpossible (1000000000L) double A = 1L; double B = 999999999l; Is there a difference between "L" and "l"?
0
votes
2answers
37 views

Javascript declaration issue

//PROBLEM SOLVED// It turned out that the JQuery Ajax call couldn't reach the URL in certain browsers. Thanks anyway guys, for your quick responses, definitly helped to work it out. Sorry for the ...
-2
votes
1answer
69 views

Declaring multiple variables at once in a function

If int a, b, c; is a valid declaration Why not int f(int a, b, c)?
1
vote
6answers
62 views

C++ Java static final equivalent

I am using C++ to program a chess game. I want to create two class attributes for the class Board: ROWS and COLUMNS. In Java, I would declare they as static final and everything would work as I want. ...
8
votes
1answer
59 views

Eclipse - Declare variable based on return or get (Shortcut)

I'm not sure how to phrase this in a search, however I was curious if there's a shortcut in eclipse to allow us to declare a variable type based on what's after the equal. For example: firstname = ...
0
votes
1answer
29 views

Javascript fuction declaration conversion

I have a javascript function declared as myFunction: function() { // some codes... } and I want to convert the declaration format to function myFunction() { // some codes... } First of all ...
0
votes
1answer
27 views

Declaring a new object and calling some of its methods on creation

I happened about this declaration on the internet and found it really interesting. However I don't know what to search for to get more information about it. If you could tell me a bit about this or ...
0
votes
1answer
50 views

declaring that a value belongs to some range in matlab

I have a task to calculate some f(x) function in which x belongs to [-4,4] range and h=0.5. At first I tried to write x=rand*(4-(-4))+(-4)) but then I guessed that I was doing wrong and I needed a ...
1
vote
3answers
55 views

Is a class with empty body an incomplete type?

a class declaration makes the class an incomplete type, so no object of the class could be defined. And the definition of an incomplete type is that its member are not specified. Doesn't that means a ...
0
votes
2answers
45 views

Embedded statement cannot be a declaration .Net 2.0 vs 4.0

I have the following declarations in my code which works fine in .net frame work 2.0, Recently i upgraded the project to frame work 4.0 and Im getting the build error saying "Embedded statement ...
1
vote
2answers
52 views

Forward declaration of derived class

I have some code like that: class Class1 { // some code here Class2 inverse() { // some code here } }; class Class2 : public Class1 { // some code here }; And I got an ...
0
votes
2answers
22 views

Define object of a class derived from a string variable

Following is the use case: Invoker class (with main method) public class Invoker { public static void main(String[] args) { String class_file="Batch_Status"; } } Class to be ...
0
votes
2answers
34 views

double field type declaration as zero

What is significant difference between following zero double variable declaration: 0.0 VS 0d double d1 = 0.0; double d2 = 0d; I understand that both these are better than just 0,because are more ...
0
votes
2answers
32 views

codeigniter correct way to check if libraries/helper/core files is loaded

i'm using codeigniter 2. Appreciate if someone could show the correct way to check if the following files : - library file is loaded? - helper file is loaded? - config file is loaded? - model file ...
1
vote
0answers
32 views

Codemodel array

I use CodeModel to generate Java code. I expect output like this: public static final String[] COLUMNS = {ID, CODE, NAME}; I tried: definedClass.field(JMod.PUBLIC|JMod.STATIC|JMod.FINAL, ...
0
votes
0answers
73 views

Seperate Function Decleration and Implementation in F# [duplicate]

I have two functions that call each other. In F#, in order for function A to call function B, B must be declared before the declaration of function A. So when having two functions that call each ...
2
votes
3answers
51 views

Declaration of an array of strings and selecting a single character

I am new to c programming and am trying to print on the screen which key of a keypad is pressed. I have the program to the stage where it prints the row and column number of the key that was pressed. ...
0
votes
1answer
24 views

What kind of Makefile variable assignment is this?

I've used simple makefiles for years, but only recently been assigned the task of learning the ins and outs of a large, complicated set of Autotools-generated makefiles which is used for a code base ...
-1
votes
4answers
46 views

Difference of List and ArrayList in declaration? [duplicate]

Is there a difference between these two? If so, what is it? List<Integer> x = new ArrayList<Integer>(); and ArrayList<Integer> x = new ArrayList<Integer>();
20
votes
11answers
447 views

Define local function in JavaScript: use var or not?

When a local (inner) function is declared in JavaScript, there are two options: Declaring with var keyword, assigning to the variable: (function() { var innerFunction1 = function() { ... }; ...
2
votes
2answers
59 views

Java, What is the difference between assigning null to object and just declaration

What is difference between : Object o = null; and Object o; (just declaration) Can anyone please answer me?
0
votes
2answers
18 views

Creating a runnable that uses parameters

I am doing some Android programming and I want to create a runnable that accepts intents. I understand that the general way of creating a runnable is: Runnable R1 = new Runnable(){ Code }; What I ...
0
votes
2answers
64 views

Define a variable with a subvariable (or with a property)

The target is to have a variable with a Unit property, which could be accessed by e.g.: Params MyParams; MyParams.Diae = 100.0; MyParams.Diae.Unit = "kg"; Ideally, the variable Diae is a ...
0
votes
2answers
30 views

declaration is incompatible with .. (pointer)

I'm getting error on my .cpp file for this dequeue function that should return a pointer to a node The error is : identifier Node is undefined for the return value and declaration is incompatible on ...
8
votes
1answer
124 views

Can Haskell Data Declarations Be Bounded By Type Values

In Haskell, is there a way to limit a data type by the value of its components? I've drafted an example. Say you have a checkers game. A checker is either of the Black or White type. data ...
-1
votes
3answers
41 views

Expected a Declaration

This is my first question (quite new to coding) so will try and include as much info as possible 'cos right now I'm stumped! I'm attempting to write code that will create a butterworth filter to fit ...
-1
votes
1answer
43 views

What are these custom declarations in this C program? [closed]

I have a very simple question, what are these declarations in the beginning of this C program called? Normally in a C program you list the <variable-type> <variable-name>, and optionally ...
2
votes
1answer
64 views

array of arrays of structures in C - declaration

I defined a data structure as follows: struct image{ unsigned int width, height; unsigned char *data; }; An array of structures as defined above would be something like: struct image ...
1
vote
2answers
131 views

How to remove declaration and add root element in existing XML file (C#)

I'm fairly new to XML and C#, so please understand if this question is too sily to ask. I'm converting XML format using C# win-form application. The app opens a xml file using OpenFileDialog, then ...
0
votes
2answers
57 views

Should I declare my byte[]

I'am checking my application for 'bad code' using ReSharper. I have the following if-statement: if (Utility.Compare(Utility.ExtractRangeFromArray(bufferRx, ...
1
vote
2answers
126 views

How to remove declaration and add root element in existing XML file using C#

I'm fairly new to XML and C#, so please understand if this question is too sily to ask. I'm converting XML format using C# win-form application. The app opens a xml file using 'OpenFileDialog', then ...
0
votes
0answers
12 views

Code placed in .m hides instance variable

I am newbie, so I would appreciate a basic answer. In my .m file, I added code. Now I get an expected identifier warning and something that says the local declaration hides the instance variable. I ...
0
votes
3answers
86 views

The spiral rule about declarations — when is it in error?

I recently learned the spiral rule for deobfuscating complex declarations, that must have been written with a series of typedefs. However, the following comment alarms me: A frequently cited ...
-1
votes
2answers
51 views

How come changing the way I declared pointers to Objects is causing so many Segmentation Faults? C++

Question: Why do I keep getting Segmentation faults after changing the way I declared and used my pointers to Objects? They seem to be random in my opinion, but I'm sure there's a reason explaining ...
0
votes
0answers
37 views

C Declaration Order Error

Whichever char[] I declare first, does not get read into by the sscanf function. char rd[4]; char rs[4]; char rt[4]; sscanf(line, "or $%[^,], $%[^,], $%s", rd, rs, rt); printf("RD: %s, RS: %s, RT: ...
0
votes
1answer
21 views

IE8, Math.round() failure?

I did find this question: Is Math.ceil() & Math.round() supported on IE8? So I'm not sure what my problem is... Console Error SCRIPT438: Object doesn't support this property or method ...
0
votes
1answer
49 views

Undefined reference to 'WinMain@16'

I am getting a [Linker Error] undefined reference to 'WinMain@16' and I am unable to fix the issue. I am using Dev-C++ - In my project settings 'Win32 Console' is selected as I want it to be a console ...
1
vote
1answer
101 views

Absolutely bizarre compiler behavior - constructor not getting called.

I have a class named NitroShare::FileServer that has two constructor: FileServer(QObject * parent = NULL); FileServer(const Certificate & certificate, QObject * parent = NULL); The ...
-2
votes
0answers
26 views

threadpool commit overwritres new object

I want to start two threads in a threadpool. Its all okay, but the object I am declaring to commit some params get in conflict. The second threadpool start overrides the object of the first. Its just ...
6
votes
3answers
189 views

using directive vs using declaration swap in C++

Please refer to the code below: #include <algorithm> namespace N { template <typename T> class C { public: void SwapWith(C & c) { using ...
0
votes
4answers
62 views

Java: Inner class inside an inner class

Please excuse me if this question has been asked before. I have searched around the web and here at stack overflow. Case: I am stuck at my java project and the compiler won't compile my project when ...
1
vote
4answers
53 views

Java primitive declaratiron

Given the following code snippet: int i = 0; int y = + ++i; System.out.println(y); The result is 1. Why is this a valid declaration? Can anyone explain what is =+?

1 2 3 4 5 19