1
vote
5answers
127 views
Member assignment in a const function
I have a class member myMember that is a myType pointer. I want to assign this member in a function that is declared as const. I'm doing as follows:
void func() const
{
...
…
0
votes
2answers
53 views
Private member function that takes a pointer to a private member in the same class
How can I do this? (The following code does NOT work, but I hope it explains the idea.)
class MyClass
{
....
private:
int ToBeCalled(int a, char* b);
typedef …
0
votes
4answers
117 views
C++ Object, Member’s Memory Position Offset
Is there a better method to establish the positional offset of an object's data member than the following?
class object
{
int a;
char b;
int c;
};
object * o = new object() …
1
vote
5answers
277 views
In C: How to set a pointer to a structure member that is an array?
How should I write my code to example a specific array index of an array that happens to be a member of a structure? The following code is giving me problems.
// main.c
void cle …
0
votes
1answer
39 views
How do i grab value from url like http://…com/value
Hi
I am developing an web application using php.
One of the requirement is the want member id looks like folder name such as
http......com//joe
The id is "joe"
Normally i will us …
1
vote
4answers
133 views
Java: Accessing private fields directly from another instance of the same class
I'm writing a equals(Object obj) function for a class. I see that it is possible to access the private fields of obj from the caller. So instead of using a getter:
Odp other = (Od …
4
votes
8answers
213 views
Can I transform an object and access the private data members in C++?
I want to access a private data member in a class. There is no member function in the class to access the private data member. It is private.
I want to take the class and some ho …
2
votes
1answer
81 views
Static members in VB.NET
I used to write this:
Private Sub Example()
Static CachedPeople As List(Of MyApp.Person)
If CachedPeople Is Nothing Then
CachedPeople = New List(Of MyApp.Person)
End If
...res …
0
votes
3answers
181 views
Error: request for member theSizes something not a structure or union…
I'm getting this same error, but I've checked to make sure the properties were set correctly in the .h file.
Here's the code:
NSUInteger theSizesCount = [theWho.theSizes count];
…
6
votes
1answer
97 views
F# : Accessing public readonly members of structs in external assemblies
I'm getting a strange error when I use F# to read a public readonly member of a struct type defined in a C# assembly.
// C#: compile to Lib.dll
namespace Lib
{
public class My …
0
votes
5answers
287 views
_beginthreadex static member function
How do I create a thread routine of a static member function
class Blah
{
static void WINAPI Start();
};
// ..
// ...
// ....
hThread = (HANDLE)_beginthreadex(NULL, 0, CBla …
3
votes
1answer
180 views
Lua scripting implementation
Hello,
I'm currently working on implementing Lua into one of the applications that I'm working on. Currently I'm just using the C api and registering functions using lua_register …
0
votes
2answers
90 views
pthread in a class
Hey everyone, considering the following code (compiled with g++ -lpthread thread_test.cpp) how can I know what number thread I am in from inside "thread_function"? And let me know …
3
votes
3answers
213 views
default visibility of C++ class/struct members
In C++, why is private the default visibility for members of classes, but public for structs?
1
vote
7answers
206 views
what is a member vs. a property
A friend who is new to OO programming asked me the difference between a Member and Property, and I was ashamed to admit that I couldn't give him a good answer. Since properties can …
