Tagged Questions
29
votes
16answers
3k views
How do you implement a class in C?
Assuming I have to use C (no C++ or object oriented compilers) and I don't have dynamic memory allocation, what are some techniques I can use to implement a class, or a good approximation of a class? ...
6
votes
1answer
366 views
How does the Objective-C runtime instantiate the root metaclass and other class descriptions?
I'm trying to implement a basic object-oriented ANSI C runtime and using Objective-C as a guide.
They're seems to be three parts. A Class Description, Class Interface, and Class Implementation. In ...
4
votes
1answer
147 views
Regarding C++ class access/manipulation in C
I've been reading questions on Stack Overflow for a few weeks now... this'll be my first question.
So recently I've looked into making C access/manipulate a C++ class. I understand that ideally one ...
4
votes
5answers
160 views
Class declaration confusion - name between closing brace and semi-colon
class CRectangle {
int x, y;
public:
void set_values (int,int);
int area (void);
} rect;
In this example, what does 'rect' after the closing brace and between the semi-colon mean in ...
3
votes
6answers
85 views
c version of className
How do I get a variable's type in c? Objective c has className, php has get_class(), etc...
2
votes
1answer
83 views
Control access to C++ global scope?
I sometimes have to transform some matured c source code into classes. A problem that sometimes arises is that some functions share global variables. This typically is hard to find.
I just was ...
2
votes
1answer
112 views
Get Class object from another Class JNI
Java code:
public class ParentClass
{
class ChildClass
{
public String strUrl;
/**
* Standard Constructor.
*/
public ChildClass( )
...
2
votes
2answers
242 views
How to define a new type (class) in Python using C API?
I am trying to use the Python C API to define a new class inside a module that would expose certain functionality written in C to Python code. I specifically want to have it in the form of a class and ...
2
votes
6answers
140 views
c classes functions
Ok this may be a silly question for many of you.
Let me preface this with a list in order of the languages I've learned over the past 10 years.
[by the way, I understand that some of these are ...
2
votes
5answers
720 views
Wrapping C++ class API for C consumption
I have a set of related C++ classes which must be wrapped and exported from a DLL in such a way that it can be easily consumed by C / FFI libraries. I'm looking for some "best practices" for doing ...
1
vote
1answer
66 views
WxWidgets - Changing texbox from a file other than the main one
NOTE: I completely revised the question and turned it into an example project specifically for this question, so Nicks answer doesn't really make sense anymore. wxQuestionMain.h and wxQuestionMain.cpp ...
1
vote
1answer
224 views
Perlin noise: I have the source code, now what?
I have been looking all over the internet on how exactly to use the Perlin noise class (the C version), but I can't seem to find anything.
Here's what I'm doing:
double height = noise1(12);
...
1
vote
4answers
297 views
Converting a C++ class to a C struct (and beyond)
Past few days I have been "downgrading" > 1000 filem of C++ code into C.
It's been going well until now. Suddenly I'm face to face with a class...
The compiler pointed out the error first in the ...
1
vote
1answer
97 views
What's the benefit of declaring class functions separately from their actual functionality?
In C++, what's the benefit of having a class with functions...
say
class someClass{
public:
void someFunc(int arg1);
};
then having the function's actual functionality declared after int main
...
1
vote
3answers
215 views
Clone existing structs with different alignment in Visual C++
Is there a way to clone an existing struct with different member alignment in Visual C++?
Here is the background:
I use an 3rd-party library, which defines several structs. To fill up the structs, I ...
1
vote
5answers
337 views
Accessing public class memory from C++ using C
Greetings Everyone.
I'm currently writing a multi-language programe in C, C++ and fortran on UNIX, unfortunatly I run into "Segmentation Error" when I try and execute after compiling.
I've narrowed ...
0
votes
0answers
140 views
C Window class WC_LISTVIEW confusion
I'm very new to C so please bear with me. I am trying to use C (not C++) to create a window with a listview. That's it. Problem is I can't find any C-based tutorials or example code (it's all VB, C++, ...
0
votes
1answer
73 views
Crash using a class using mysql lib with wxWidgets
I've been stuck for a while on a problem and can't find a good solution.
I wrote a small class to use the c mysql lib on my project.
I use this class from an other class, the compilation goes well, ...
0
votes
5answers
139 views
C++ Call Function When Variable is Requested
I've see this done before in languages based on mono, but I'm just curious if this would be possible in c++. If I had the following class
class test {
public:
int foo;
int myfunction();
...
0
votes
5answers
112 views
Is it possible to give a top-level function access to an object's members in C++?
So I'm writing some wrapper classes for GUI programming in Win32. I'm starting with a Window class, and so far it contains a MainLoop method that is basically a clone of the standard Win32 WinMain ...
0
votes
1answer
110 views
Flex/Bison Multi-pass Class Parsing
I am writing a compiler for a toy OO language. I am writing it in C, using Flex and Bison.
Consider the following syntax:
class MyClass {
int m_n;
void MyFunc(int b) {
m_n = 5;
...
0
votes
0answers
91 views
Accessing Java class and function from Cfor Android?
Now I am using NDK-Build for my Application. Now my requirement is like that:
Application will call some native APIs that call the C code. Within that code I want to
access my Java classes. As ...
0
votes
1answer
166 views
Passing new data to an asynchronous, threaded function that may still be using the old data
I am having some problem related to C/C++:
Suppose I have some class
class Demo
{
int constant;
public:
void setConstant(int value)
{
constant=value;
}
void submitTask()
...
0
votes
3answers
90 views
How to load and call java compiled classes from within C?
How to load and call java compiled classes from within C ?
0
votes
5answers
2k views
C++ new operator. Creating a new instance
I'm having some trouble creating an object in C++. I create a class called Instruction, and I am trying to create a new instance, but I get compiler errors.
Class code:
class Instruction{
...
0
votes
1answer
108 views
Registering Windows Classes Win32
what's the best practise for registering window classes for a win32 program?
Do you register every class in the WinMain function or as they're required?
-1
votes
2answers
1k views
How to read and write bits to a byte array
I have a unsigned char buffer, and I'm wondering how I would write and read signed and unsigned bits to this byte buffer.
In the Source Engine there is a class named bf_write, which two main methods ...
-2
votes
2answers
65 views
Where the a class instance will be located on memory if it is declared as A a? [closed]
If declare an instance of class A :
"A a;"
which kind of memory type will it be created on?
any other type of memory type?
My solution:
It depends on where it is declared.
If it is a global ...