Declaration is the part of the subprogram (procedure or function) which provides the protocol(header), but not the body of the subprogram.
0
votes
2answers
53 views
What is the meaning of “l” in some variables initialization - C++
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
36 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
63 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
55 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
54 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
27 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
48 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
54 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
41 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
21 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
33 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
22 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
31 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
72 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
21 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
410 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
57 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
62 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
29 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
122 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
38 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
62 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
116 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
107 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
11 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
83 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
50 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
36 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
20 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
100 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
184 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
61 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 =+?
2
votes
3answers
82 views
Function Pointer Declaration - what does __P do?
The usual form of function pointer definitions is:
int function(int, int);
int (*ptr)(int, int);
but I saw a form today which I didn't understand. Can anyone explain this please?
int (*close) ...
-5
votes
1answer
41 views
Nested for loop in java. Am I allowed to declare a variable in the outer and increment it in the inner?
I want to use nested for loops to bring the elements of a 2d array into a 1d array. Can i do it with an index variable declared in the outer loop and incremented in the inner one like this?
for(int ...
-5
votes
2answers
52 views
C++ Passing arguments to a function [closed]
Recently i started to program in C/C++, but i find it a little bit hard to understand certain things. For example, my vertices.h file:
#ifndef _vertices_h
#define _vertices_h
typedef struct
{
...
1
vote
1answer
49 views
Freeing C pointers declared in the middle of a block (seeking documentation on this)
Where is this behaviour documented (if it is at all)?
When you declare a pointer in C in the middle of a block, it will probably be in a wrong state (pointing to unusable memory) and you cannot use ...
2
votes
2answers
65 views
Intro to C: Declaration of Functions
I want to declare a function for use in my code in ANSI C.
Am I allowed to define the function after using it in main()?
For example an absolute value function that I wrote: can anyone tell me if it's ...
1
vote
2answers
112 views
2D Array Value Assign After Declaration in C++
I know when we want to assign values to 2D arrays as we declare the array, we do this:
int myArray[2][4] = {{1,2,3,4},{5,6,7,8}};
But how should I assign values "after" declaring it? I want to do ...
2
votes
2answers
47 views
declaring a variable inside of if/else construct
I am solving a basic Java string problem on CodingBat.com (extraFront).
The task is to, given a string of any length, return the two first characters repeated three times. This first example is what ...
0
votes
0answers
26 views
XML Declaration to FOR XML EXPLICIT
I am using SQL Server 2008 and writing a output of a SQL query to XML. The XML gets generated but am not able to add the declaration
<xml version "1.0" encoding = "UTF-8">
Tried adding
...


