Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

28
votes
14answers
19k views

Why is volatile needed in c?

Why is volatile needed in C? What is it used for? What will it do?
26
votes
6answers
15k 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 ...
15
votes
5answers
9k 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 ...
10
votes
1answer
271 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 ...
9
votes
6answers
189 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> { ...
7
votes
7answers
353 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 ...
6
votes
6answers
865 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 ...
6
votes
4answers
12k 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 ...
6
votes
11answers
4k views

C++: Asterisks and Pointers

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* ...
5
votes
6answers
137 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 ...
4
votes
6answers
665 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. ...
3
votes
3answers
4k 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) ...
3
votes
2answers
886 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 ...
2
votes
4answers
136 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 ...
2
votes
1answer
294 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); ...
2
votes
3answers
152 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?
2
votes
4answers
726 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
2answers
101 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 ...
1
vote
1answer
103 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 ...
1
vote
4answers
408 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
2answers
53 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
57 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 ...
0
votes
2answers
59 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 ...
0
votes
0answers
249 views

Axis2 Soap envelope not generating required namespaces

I am new to writing web services and have the following issue: I used Axis2 ADB to create a service stub class from a WSDL provided by a company but am having trouble writing the client to consume ...
0
votes
3answers
221 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(), ...
0
votes
0answers
85 views

Stylecop - Multiple declarations on a single line

The rule I am trying to write is about prohibiting multiple declarations on the same line, but I stumbled upon some weird behavior of Stylecop. Following situation: class Something { public int ...
0
votes
1answer
65 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 ...
0
votes
3answers
199 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
71 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
82 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 = ...
0
votes
5answers
884 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 ...