A generic tag for topics providing definitions.

learn more… | top users | synonyms

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 ...
2
votes
6answers
96 views

How to define `health` and `maxHealth` in one object, when `healt` can't be higher than `maxHealth`?

I have a class called Warrior that has uint m_health and uint m_maxHealth attributes. I want my constructor to take parameters Warrior(uint health, uint maxHealth). Now I've studied C++ alot and I ...
0
votes
1answer
37 views

Link between variables in different programs in Fortran (f90)

I am trying to structure my Fortran program appropriately. I have a program GridGeneration.f90 that generates my grid mesh. I want to control the size of the grid in my main program, i.e. the grid ...
-2
votes
3answers
83 views

C++ basic syntax errors

I am getting errors with the following code and don't know where I am going wrong. #include <iostream> #include <fstream> #include <cstring> #include "Translator.h" using namespace ...
1
vote
3answers
76 views

Reading bits serially in C

I am trying to convert a bit of code from Python to C. I have got it all working other than the section below. All the variables have been defined as ints. I believe the problem has to do with ...
0
votes
1answer
34 views

asp:Button not responding to clicks with OnClick

I seem to be having a problem with my button's OnClick, it doesn't even react at all to the event. It responds to OnClientClick and executes the code, but when I try to relate it o a function in my ...
0
votes
0answers
70 views

ambitious definition C++

(I have just add some new infomation) I am so tired about definition c++. I have some source files oo.h has header gruard #define oo_DEFINE_CLASS(klas,parent) \ typedef class struct##klas *klas; \ ...
0
votes
4answers
36 views

Python find method in class

I have defined a class called Point which defines a point in the x, y coordinate system. The definition and methods are shown below. I created my own version of the str method to return the created ...
0
votes
1answer
51 views

Python 2.x - creating static instance of class in same class

I am trying to write an "enum class" in python. A slight nuisance I am currently experiencing is the inability to define enum values inside the enum class. That is, I can do this: class Fruit: ...
0
votes
3answers
55 views

Difference between property defining (with and without {get; set;})

I have this public int CityId { get; set; } and public int CityId; If I use first - it works in EF code first while the second - doesn't. But if I definte {get; set;} and do nothing else, what ...
0
votes
1answer
42 views

What is wrong with extern short i; i=2; ? gcc complains type conflict

The following code is similar to that of question Is there a difference between initializing a variable and assigning it a value immediately after declaration? downvoted twice, so I am at risk ;-) ...
2
votes
2answers
129 views

What is the difference between literal and variables in Python? [closed]

I'm a beginner user for Python, but I get confused between literal and variables. This is what I know about a literal: "a"+"b" And variables: sentence="a"+"b"
-2
votes
1answer
34 views

How would you define a Proxy Type?

I understand them conceptually, but am having a hard time coming up with a plain English definition for them. This is the closest fitting I think that I've come up with so far: Proxy Types are ...
0
votes
2answers
104 views

multiple definition of function, first defined here [closed]

I'm working on a scanner/parser for a university project and I've run into this error: stack.c 91: multiple definition of '[all functions in stack.c]' stack.c 91: first defined here For some reason ...
1
vote
3answers
51 views

Using 'define' in Scheme

I'm new to Scheme and was just curious about 'define'. I've seen things like: (define (square x) (* x x)) which makes sense [Function name 'square' input parameter 'x']. However, I found some example ...
3
votes
1answer
104 views

Can I avoid using the class name in the .cpp file if I declare a namespace in the header? [duplicate]

In C++, all I want to do is declare a DisplayInfo class in a .h file, and then in the .cpp file, not have to type the first DisplayInfo::DisplayInfo() and every function definition. Sadly, I've ...
0
votes
5answers
81 views

Defining variable in function through if else

Please see the small code below: void TestPluginAPI::MouseMove(int nX, int nY) { INPUT input; DOUBLE fScreenWidth = GetSystemMetrics( SM_CXSCREEN )-1; DOUBLE fScreenHeight = ...
0
votes
1answer
87 views

define string macro with escape characters in .pro file QT

I am trying to define a macro with a string value in the .pro file of a QT project like so: DEFINES += DRIVESDB=\\\"C:\\users\\grant\\desktop\\log.db\\\" In my source files, I would like DRIVESDB to ...
1
vote
1answer
46 views

How to hide unwanted measures

AP 4.4.3, APL 2.7.0 Hi, When defining a post-processed measure we end up with two measures available to us in Active Pivot Live. E.g. the definition below will give us the measures "Yield ...
0
votes
1answer
48 views

Unit tests and Integration tests definitions & Maven

How do you define border between Unit testing and Integration testing? Where is it exactly? In what part is layers testing ? Related Terminology for integration tests which test each layer and the ...
-1
votes
2answers
61 views

Function declaration and definition C - arguments defined as in pascal: what should it be? [duplicate]

I've read an interesting code recently, but I can not identify the meaning of it: void foo(arg1, arg2) int arg1; unsigned char arg2[16]; { //some code } I have never seen something like that in ...
0
votes
1answer
53 views

Discrete math recursive definition

So we were working this problem in class and for f(2) I got the same answer but for f(3) I got something different from the professor. Basis: f(0) = -1 and f(1) = 2 Recursion: f(n) = f(n-2) - f(n-1) ...
-6
votes
1answer
69 views

Could any one help me to understand what are allaire spectra and coldfusion? [closed]

I have no knowledge to them at all, I only used web-based sharepoint and SQL server, and a little bit understanding to Visual studio 2010,Could you please use simple words and example to tell me what ...
0
votes
2answers
99 views

Which of these C “MAX” macros would be best?

I see two possible implementations for a MAX macro in C. Which of these would be best? define MAX(X,Y) ((X) < (Y) ? : (Y) : (X)) define MAX(X,Y) 0.5*(X+Y+ABS(X-Y))
1
vote
2answers
44 views

Scheme defining functon

i'm trying to come up with a way to add only positive integers up to a certain number in scheme an i can't for the life of me figure out a way to do it, i was trying to use recursion. this is what i ...
1
vote
0answers
58 views

Class stops working when defined as global

I am writing a program that uses camera data from the PSEye camera using the Code Laboratories drivers (http://www.codelaboratories.com/products/eye). So i created a header file called PSEyeGetter.h ...
3
votes
1answer
113 views

xtext comma separated variable declaration

I try to define some XText for specifiying variables according to following syntax variables MyVar1 : Bool at 0x020 value=true; MyVar2, MyVar3 : Int at 0x030 value 200; end-variables So each ...
3
votes
1answer
72 views

What does this weird C++ definition mean? [duplicate]

I have this strange function definition in my homework code and I don't really know what it's supposed to mean. char * sh_single_quote (string) char *string; {...} Especially the "char *string;" ...
-5
votes
1answer
95 views

stl template, self/recursive definition [closed]

I want to create a container which contains pairs. The first entry of the pair is some info (for instance an int), the second entry is an iterator on elements of this same container. I want to use ...
0
votes
2answers
39 views

Are SQL SELECT statements by definition stable?

Here is my problem, I was asked to ensure that statements within a big project which are all wrapped like: Select * from (Select ... order by column) keep their ordering. This begs the question, is ...
0
votes
1answer
21 views

VS 2008 : Code Definition Window wrong symbol file

I have installed both Microsoft Platform SDKs v6.0A and v7.0. Inside Visual Studio 2008 I include that is defined to get this file from v7.0. Beside that, when I use CDW (code definition window) to ...
-3
votes
3answers
1k views

C# Foreach statement does not contain public definition for GetEnumerator

I'm having a problem with a Windows Form application I'm building in C#. The error is stating "foreach statement cannot operate on variables of type 'CarBootSale.CarBootSaleList' because ...
2
votes
1answer
55 views

spring load xml definition without external url

In my application which is using Spring framework, at top of my environment.xml I have the usual <?xml version="1.0" encoding="UTF-8"?> <beans ...
1
vote
2answers
41 views

Is it wise to define connection variables?

I'm here today to ask if it's wise to define(); connection variables to a database. My Example is as followed: // Constants For Database define ("DBAHost", "localhost"); define ("DBAUsername", ...
0
votes
1answer
37 views

XText datatype definition and usage

I want to build an Editor for a language with different groups of variable types, but have problems with the generated content assistant. Type: 'TYPE' ':' name=ID '(' type=[ANY] ')' ';' ; ANY: ...
3
votes
2answers
56 views

How to declare a value type in CIL: `.class value` or just `.class`?

I have taken a look at a C# struct FooStruct in ILDASM, and have seen the following: ILDASM here displays two differing declarations: one starting with .class value public (rear window & ...
0
votes
1answer
99 views

What does the word 'port' mean pertaining to software development?

I'm reading a book on ASP.NET MVC, and it states: "NVelocity is a port of the Java Apache Velocity template engine, and NHaml is a port of the Ruby on Rails Haml engine". What does the word ...
0
votes
1answer
72 views

Terms “Systematic”, “disciplined”, “quantifieable” in the IEEE software engineering definition

The IEEE defines software engineering in the following way: (1) The application of a systematic, disciplined, quantifiable approach to the development, operation, and maintenance of ...
1
vote
1answer
58 views

conditional compilation warning for constant

QUESTION I would like to trigger a warning only if my TESTING is YES. Is this possible? What I have now doesn't work. What should I do? BOOL const TESTING = NO; #if TESTING == YES #warning don't ...
0
votes
1answer
45 views

Difference Between Plugin, Addon, and Helper

I am trying to understand classification/naming of scripts, I havent found any software vocabulary online that I can read, I have many scripts which my own, and from open sources. I want to put my ...
-2
votes
1answer
50 views

Undefined reference from templated function (C++) [duplicate]

main.o: In function `main': main.cpp:(.text+0x2f): undefined reference to `Foo<int>::display(int)' collect2: ld returned 1 exit status caused by g++ -c *.cpp && g++ *.o -o foo with ...
3
votes
1answer
119 views

What is the difference between __int<size> and “char, short, int, long long int”?

I am surprised to see also my C++ compiler supports __int8, __int16, __int32, and __int64; But I just see they are equivalent to char, short, int, and long long. What is the difference between them? ...
0
votes
3answers
560 views

Add Auto-Increment ID to existing table?

I have a pre-existing table, containing 'fname', 'lname', 'email', 'password' and 'ip'. But now I want an auto-increment column. However, when I enter: ALTER TABLE users ADD id int NOT NULL ...
3
votes
1answer
292 views

What is a module in C++?

What does the term module refer to in the following sentence? Don't allow exceptions to propagate across module boundaries. This is rule 62 in C++ Coding Standards by Herb Sutter and Andrei ...
1
vote
5answers
154 views

method definition outside the class declaration [closed]

please how can i write definition of constructor with parameters outside class declaration? class A{ public: A(int x); ~A(); } A::A(int x) { ... } A::~A(){...} class B : public A { public: ...
0
votes
2answers
59 views

The value range (mininum & maxinum)

What exactly the maximum and the minimum value of any definition type? Is this possible? unsigned int maximum_uint = (maximum_value)(unsigned int); short minimum_short = (minimum_value)(short); float ...
4
votes
8answers
3k views

Java: int[] array vs int array[] [duplicate]

Possible Duplicate: Difference between int[] array and int array[] is there a difference between int[] array = new int[10]; and int array[] = new int[10]; both do work and the result ...
0
votes
1answer
197 views

Aptana studio 3 or any IDE or Text Based Editor with ruby on rails assist-code definition

I am used to using an IDE like Eclipse or Netbeans when coding in Java and having a small code assist appear to give me a small description on each of the methods available. Now code assist does work ...
3
votes
5answers
243 views

In which way is akka real-time?

At a couple of places there is state that akka is somehow "real-time". E.g.: http://doc.akka.io/docs/akka/2.0/intro/what-is-akka.html Unfortunately I was not able to find a deeper explanation in ...
-6
votes
2answers
73 views

Definitions and words in python [closed]

I had a few questions about some definitions etc to try to get my head around python: What is a default-parameter What happens if you forget to call out a function? - nothing i suppose? How do you ...

1 2 3 4 5 11