Tagged Questions

0
votes
5answers
87 views

Outer Java class is able to access inner class private members?

I observed that Outer classes can access inner classes private instance variables. How is this possible? A sample code demonstrating the same is explained below:: class ABC{ class XYZ{ …
0
votes
4answers
81 views

[C++] Map functions of a class while declaring the functions

Hi, My previous question about this subject was answered and I got some tests working nice. http://stackoverflow.com/questions/1786809/c-map-functions-of-a-class My question is now, if there is a …
2
votes
5answers
92 views

C++ static members in class

Hey Guys Is it possible to access to access and use static members within a class without first creating a instance of that class? Ie treat the the class as some sort of dumping ground for globals …
0
votes
4answers
142 views

How did you handle your team members during times of recession, when you had to let go of some people?

i was asked the above question during one of my interviews. Although i answered that i will talk with each of the employees individually and try to make comfortable in the current position but still …
0
votes
2answers
24 views

Classes and file reading

Can an object of ifstream type used for file reading be a static member of a class? I want to read a file and store each line in an array of objects of a class i have created. I want the file reading …
0
votes
3answers
116 views

DB design : members table separate or all in one table ?

I want to create a table of friends with personal information and log on details. What better to separate the members table to 2 tables , one contain minimal details , second with Other details. or …
3
votes
4answers
2k views

Unresolved external symbol on static class members

Very simply put: I have a class that consists mostly out of static public members, so I can group similar functions together that still have to be called from other classes/functions. Anyway, I have …
1
vote
3answers
269 views

incorrect members order in a C# structure

Hello, I have a TCP Client,which puts a packet in a structure using System.Runtime.InteropServices; [StructLayoutAttribute(LayoutKind.Sequential)] public struct tPacket_5000_E { public Int16 …
0
votes
5answers
211 views

Should lookup tables be static

I have a Message class which parses text messages using lookup tables. I receive a lot of messages and create and destroy a lot of objects so I thought I declare those lookup tables as static members …
1
vote
9answers
280 views

Is it better to store class constants in data members or in methods?

I recently wrote a class that renders B-spline curves. These curves are defined by a number of control points. Originally, I had intended to use eight control points, so I added a constant to the …
0
votes
3answers
151 views

labeling a group of members as private/public in c#

in a c++ class declaration, you can label a group of members as private or public, e.g. private: int x; double y; seems like there's no way to do this in c#. am I wrong?