The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
3answers
25 views

AS3 dynamic object properties inside another object

I'm failing at something very basic, please help me, it surely must be easy but I don't know the syntax and I can't find an example. I want to create an object with nested objects inside of it whose ...
1
vote
2answers
58 views

Verilog - individual output arrays

This is my first time on stackoverflow.com and new to verilog coding. I may use some terms incorrectly so if I do please correct me so I can be clearer in future posts. I am using an Altera FPGA ...
2
votes
2answers
57 views

conditional component decleration and a following if equation

I am trying to build a model that will have slightly different equations based on whether or not certain components exist (in my case, fluid ports). A code like the following will not work: ...
2
votes
2answers
71 views

Difference between variable declarations in Java [closed]

What is the difference between these declarations in Java, if there are any? private int a = 1, b=2, c=3, d=4; private int a = 1; private int b = 2; private int c = 3; private int d = 4; ...
1
vote
2answers
85 views

use of new keyword in class declaration

Can somebody please explain the use of the new keyword in below code? public class TableList<T> : ObservableCollection<T> where T : ITable, new()
-2
votes
2answers
44 views

can I trust order of execution in declarations in javascript? [closed]

I would like to know if either of these rely on undefined behaviour, and/or if they can be adapted so that they do not: Example 1: var str = { ver: '1.01', verdesc: 'WIP', composite: { ...
0
votes
1answer
454 views

How can I use vba to modify xml declarations

my first post, woot! I've been lurking for the last 6 months as I have been learning VBA and have made a lot of progress. But now I'm stuck and I need your help! I have a set of xml documents that I ...
-2
votes
4answers
122 views

An array of length 4-20?

I'd like for my array to be of a set length using a simple format. Please, let me know how this is done. What I already have: arr[100] Psuedocode: what I would like to have: arr[4-20] or ...
0
votes
4answers
205 views

implicit declaration of functions?

I'm still learning C and I understand that to get rid of most implicit declaration warnings, you add the prototype header at the beginning. But I'm confused as to what you do when you have outside ...
0
votes
1answer
127 views

default argument promotions in the case of inplicit function declarations

before posting I'm sorry if the question appears (or is) stupid and for my bad English, I've tried to search in old questions but I've not solved my problem. I try to explain my doubt; Supposing to ...
6
votes
2answers
5k views

Private Method Declaration Objective-C

I have a lot question marks tolling above my head. What i don't get is before xcode 4.3 i needed to declare forward declarations (for private methods) in my implementation file. like in my .m file: ...
0
votes
2answers
665 views

Trouble reading database records into memory variables in VB 2010

I followed an example on stackoverflow about how to read database records into variables. This is the first time doing this and I feel that I'm close but I'm baffled at this point about the problem. ...
0
votes
2answers
168 views

What does IDisposable.Dispose() as a method name mean?

I was just tidying up some code when I found this region in the class: #region IDisposable Members void IDisposable.Dispose() { } #endregion Now understand ...
1
vote
2answers
151 views

confused on forward declarations

#pragma once #include "Player.h" class Player; //class SmallHealth; const int kNumOfCards = 3; //for Player class also const int kCardLimit = 3; class Cards { private: protected: int ...
10
votes
1answer
592 views

PHP in Aptana - function declarations?

I was wondering if there is an easier (or just any) way to declare functions in PHP files. For example, let's say we have following function: function myfunc($parama = '', $paramb = 0) {} Would it ...
1
vote
2answers
263 views

variable definition in C

what does following declaraion mean in C? char a = (10,23,21); while printing the value of "a" with "%u" the output is 21. gcc is not giving any error. what's this kinda declaration and what's the ...
5
votes
6answers
276 views

What does the C compiler do with different types of declarations?

I understand this: int i = 3; // declaration with definition It tells the compiler to: Reserve space in memory to hold integer value. Associate name with memory location. Store the value 3 at ...
2
votes
4answers
191 views

js: var declarations, loops, efficiency, utility

readability aside ... in terms of efficiency and/or functionality, i'm not clear on the difference between placing a declaration outside (my practice) or inside a loop (seen in other SO posts). or ...
0
votes
3answers
733 views

Variables not declared in this scope

The problem lies within the block: check_sort(l.begin(), l.end(), "list"); time_insert(insert_list, data); check_sort(s.begin(), s.end(), "set"); time_insert(insert_set, data); check_sort(v.begin(), ...
1
vote
1answer
165 views

Flex Declaration Order Bug

In Flex you can use Declarations tags fo non UI elements. Problem: The order of classes inside the Declaration is sorted ascending or something... Meaning that in this example, AClass will be ...
4
votes
1answer
936 views

Is $(document.body) and document.body the same? Cleaning garbage and binding in class? - MooTools 1.3

I am building a MooTools class and I have this in my initialize function: this.css = null; window.addEvent('domready', function(){ this.document = $(document); this.body = $(document.body); ...
9
votes
6answers
330 views

Can someone explain the declaration of these java generic methods?

I'm reading "Generics in the Java Programming Language" by Gilad Bracha and I'm confused about a style of declaration. The following code is found on page 8: interface Collection<E> { ...
0
votes
1answer
106 views

Add multiple declarations to XDocument

I'm trying to build an XDocument that requires two declarations. The final document needs to look like the following: <?xml version="1.0" encoding="utf-16"?><?adf ...
2
votes
3answers
221 views

i dont get what the following pointer variable declarations mean in c

char(*p)[15]; char(*p)(int *a); int(*pt)(char*); int *pt(char*); anyone help?
0
votes
3answers
276 views

C# Nested Classes, Clean up Declaration

Is there a way in C# to tidy up the following class declaration? namespace Application.Namespace { public class MasterClass { public class FlyingSaucer { public ...
0
votes
1answer
103 views

change xmlns too when changing charset?

Should I alter the xmlns into 'el' from 'en' when setting up a webpage in ISO-8859-7 (Greek)? So it woulb be: <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="el" lang="el">
0
votes
2answers
153 views

The right method of sharing database variables (asp.net)

I have been sharing database variables using the following code: Namespace DataAccessVariables Public Class Vars Public Shared s As String Public Shared con As String = ...
9
votes
7answers
537 views

Complex Declarations

How to interpret complex declarations like : int * (* (*fp1) (int) ) [10]; --->declaration 1 int *( *( *[5])())(); -------->declaration 2 Is there any rule that should be followed to ...
11
votes
6answers
2k views

Declaring and initializing a variable in a Conditional or Control statement in C++

In Stroustrup's The C++ Programming Language: Special Edition (3rd Ed), Stroustrup writes that the declaration and initialization of variables in the conditionals of control statements is not only ...
2
votes
4answers
1k views

Automatically separate class definitions from declarations?

I am using a library that consists almost entirely of templated classes and functions in header files, like this: // foo.h template<class T> class Foo { Foo(){} void computeXYZ() { /* heavy ...
1
vote
4answers
1k views

Variable/Type declaration private by default

Is there a way to make the default access modifier public for variable/method/class declarations? I think by default, class declarations are private yes?
0
votes
5answers
1k views

Cant declare variables after statements in DevC++

The trouble here is that i cant declare variables inside a function after the function already has some statements in it. Declaring at the start works fine, but after something, it gives a parse ...
5
votes
6answers
826 views

What (not) to declare when implementing an interface with an abstract class?

I have an interface A, for which I have to supply a few different implementations. However, those implementations share some helper methods, so I moved those methods to an abstract base class. ...
6
votes
3answers
8k views

Why #include <stdio.h> is *not* required to use printf()?

Session transcript: >type lookma.c int main() { printf("%s", "no stdio.h"); } >cl lookma.c Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.50727.762 for 80x86 Copyright (C) ...
7
votes
4answers
15k views

C++ Nested classes forward declaration error

I am trying to declare and use a class B inside of a class A and define B outside A. I know for a fact that this is possible because Bjarne Stroustrup uses this in his book "The C++ programming ...
40
votes
7answers
29k views

C# member variable initialization; best practice?

Is it better to initialize class member variables on declaration private List<Thing> _things = new List<Thing>(); private int _arb = 99; or in the default constructor? private ...
36
votes
6answers
19k views

Variable declaration placement in C

I long thought that in C, all variables had to be declared at the beginning of the function. I know that in C99, the rules are the same as in C++, but what are the variable declaration placement rules ...
55
votes
14answers
38k views

Why is volatile needed in c?

Why is volatile needed in C? What is it used for? What will it do?
4
votes
2answers
1k views

What is the difference between these declarations in C?

I am Manoj here to ask a question again. In C and C++ what do the following declarations do? const int * i; int * const i; const volatile int ip; const int *i; Are any of the above declarations ...
14
votes
12answers
7k views

Pointer declarations in C++: placement of the asterisk

I've recently decided that I just have to finally learn C/C++, and there is one thing I do not really understand about pointers or more precisely, their definition. How about these examples: int* ...