The member-functions tag has no wiki summary.
-1
votes
2answers
122 views
Oracle ORA-01422: exact fetch returns more than requested number of rows
I am trying to create a member function that returns the member names of expired members. My select query works outside of the member function and this member function compiles with no problems but ...
0
votes
0answers
59 views
calling a static member function in fixed point implementation
hello all i am doing fixed point implementation in c++ which is done by the following code. The problem is when i call cossin_cordic static member function from the test file . i am getting the error ...
1
vote
2answers
73 views
Is the “this” pointer always const?
Let X be a class with member function f().
this is an implicit argument for f(), it is of type X* const.
Then, if f() const is a const member function, the type for the this pointer is now const X* ...
0
votes
1answer
57 views
how to define a constant member function in enterprise architect?
I can't get the **int getId() const; member function to be generated by enterprise architect
How do I specify a constant member function in enterprise architect?
0
votes
0answers
18 views
Access Derived member with pointer to Base casted to Derive
I want to understand mechanism of casting and calling members, i want to know under the hood of this process, if somebody knows good article about it please post the link.
class Base
{
public:
...
2
votes
5answers
121 views
Refactoring out method common to all classes
I've got a global function that copies relevant bits of one object (or type Source) to another (of type Target), like so:
template<typename Source , typename Target>
void partialCopy( ...
0
votes
1answer
74 views
Decorators, lambdas and member function calls in Python?
What's the correct syntax?
Programming attempt
class Foo:
def hello(self):
print "Hello cruel world!"
def greet_first(self, f):
self.hello()
return lambda *args, ...
0
votes
3answers
148 views
Creating a thread of a nonstatic member function? [duplicate]
If I have a member function. . .
MyClass::MyFunction()
{
while(1)
{
//blah blah blah
}
}
. . . and I try to create a thread of this function . . .
CreateThread(Null, 0, ...
2
votes
3answers
117 views
How do I make my matrix object implicitly convert to scalar when its dimensions are 1x1?
I have written a Matrix class. It does multiplications between matrices. Sometimes multiplication of matrices yield a 1x1 matrix (e.g.; inner product of two column vectors). Is it possible to make a ...
7
votes
2answers
182 views
Multiplying an object with a constant from left side
I have a Matrix class and it has overloaded * operators for scalar and matrix multiplications.
template <class T> class Matrix
{
public:
// ...
Matrix operator*(T scalar) ...
1
vote
3answers
95 views
Non constant member function being called inside a constant member function
#include <iostream>
class Hello {
public:
void Test() {
std::cout << "Testing" << std::endl;
}
};
class Hi {
public:
Hi()
:hello(new Hello())
{}
...
4
votes
1answer
242 views
LuaBridge and Member Functions
I just downloaded LuaBridge today and am very satisfied with it so far. One thing I've noticed is that I'm able to circumvent the normal requirement of having a lua_State as a function parameter.
I ...
0
votes
1answer
51 views
Documenting COM object with doxygen: how to document class members without documenting class
I use doxygen to generate two sets of documentation for my C++ COM object (an .OCX file): a full documentation for programmers, and a "user documentation" for those who use my object in VB. The user ...
0
votes
2answers
141 views
Calling member functions before constructor
In AS3, you can initialize a member variable (or constant) by calling a member function. This happens before the constructor is called. In the meantime, the 'this' keyword is perfectly accessible in ...
11
votes
5answers
286 views
Why is calling a static member function with . or -> syntax legal? [duplicate]
Possible Duplicate:
C++ Static member method call on class instance
Today I discovered that something I had long (and I mean long—like, for twenty years), thought illegal in C++ is actually ...
2
votes
2answers
239 views
Defining member functions of a class?
I am working with a book on c++ and to solve the problems I am always asked to declare the member functions' prototypes in the xxxxxx.h file and define the functions body properly in the xxxxxx.cpp ...
2
votes
1answer
79 views
Calling member functions of immutable classes
immutable class Foo
{
void bar()
{
}
}
void main()
{
auto x = new Foo();
x.bar();
// Error: function test.Foo.bar () immutable is not callable
// using argument ...
-1
votes
1answer
157 views
C++ using getArea() and accessing an array to work out area of circle
I need some help with the following problem which is to work out the areas of each circle within an array using the getArea() method. How do I go about accessing an array and then working out the area ...
1
vote
3answers
962 views
Calling member functions, declaring outside of class
I want to call 'int Random::random(int lower, int upper) function, however I get a problem saying 'member function may not be re-declared outside of it class' also I tried to provide a solution in the ...
1
vote
2answers
88 views
python: how to acces attributes of functions
I'm trying to acces attributes of member functions, but I cannot understand why I can access only through the __dict__.
class A(object):
def fA(self):
print A.fA.x
fA.x = 2
...
4
votes
3answers
304 views
Why class member functions shadow free functions with same name?
It recently came to my attention that member functions completely shadow free functions with the same name when inside the class. And by completely i mean that every free function with the same name ...
11
votes
1answer
1k views
std::mem_fun vs std::mem_fn
What is the difference between std::mem_fun and std::mem_fn? Why is the naming so confusing?
Boost's documentation says that std::mem_fn can replace std::mem_fun in most cases. So in what situation ...
0
votes
1answer
402 views
Interface for template member functions
Is there some common way to define a interface for template member functions? I would like to create some pure abstract base classes with declarations of template member functions that should be ...
5
votes
2answers
358 views
How to use variadic templates to make a generic Lua function wrapper?
For my current project, I've been writing a lot of C/C++ to Lua wrappers. A large number of these are simple setters and getters, so I managed to write some templates that make it easy to generate ...
0
votes
2answers
989 views
C++ pthread member function [duplicate]
Possible Duplicate:
pthread Function from a Class
I have this code that I can't get to compile because of the pthread_create line:
void* gtk_functor::_threaded_run(void* win)
{
...
21
votes
1answer
452 views
In C++11, how do I specify that the implicit “this” parameter “[[carries_dependency]]”?
In [dcl.attr.depend]/1, I read:
The attribute[...] carries_dependency [...] may be applied to the declarator-id of a parameter-declaration in a function declaration or lambda,
in which case it ...
0
votes
1answer
115 views
How to add Android debug function (LOGE, LOGW…) in C++ inline member function?
I'm developing Android audio driver. In case I need to add debug function "LOGD" inside constructor Mutex::Autolock::Autolock(Mutex& mutex), which is defined in ...
3
votes
0answers
94 views
Can I use SFINAE to detect and call a member function that may not be defined? [duplicate]
Possible Duplicate:
Is it possible to write a C++ template to check for a function's existence?
I'm interested in finding some SFINAE-driven expressions that allow me to detect the ...
2
votes
2answers
120 views
Template Member Function to Write to Output Iterator
I thought I would be smart and create member functions that accepted output iterators. This way, I could avoid returning a collection or taking a collection by reference. For example:
template ...
2
votes
4answers
193 views
C++ lists and pointers
I am working on homework and wanted to know what this is actually defined as:
list < NAME > * m_ofList
Where name comes from a struct like so:
typedef struct name
{
int age;
int ...
4
votes
3answers
341 views
Pointers to member functions in C++
This is actually for a chess playing program, but the code is too long to post here so I'm going to use a simpler unrelated example:
Let's say I have an object like this:
class A{
int x1;
...
6
votes
3answers
253 views
Can unused member functions be reported by the linker? (C++)(gcc)
std::string has over 30 member functions that can be called on a string object.
What if I only use a few of them?
I assume the unused member functions will not take up space in the executable code ...
0
votes
1answer
111 views
Access private members of local objects (of same class type)
I need to access the private members of a local object from a member function. The example explains it better I think. Is there a way to do this without making *a public, or without providing a ...
4
votes
1answer
288 views
Scope of static variable of member function
If I have a static variable declared within a (non-static) member function of a class, is it static to each instance of that class, or static across all instances? Sorry if the answer should be ...
7
votes
4answers
764 views
Non-member vs member functions in Python
I'm relatively new to Python and struggling to reconcile features of the language with habits I've picked up from my background in C++ and Java.
The latest issue I'm having has to do with ...
0
votes
2answers
69 views
Member functions
I am getting an error at the line "void operation" when I compile, because I havent defined Gate_ptr yet. I thought of exchanging the "Gate_ptr" with just "Gate*" instead in the function def. However, ...
5
votes
3answers
6k views
what does “error : a nonstatic member reference must be relative to a specific object” mean?
int CPMSifDlg::EncodeAndSend(char *firstName, char *lastName, char *roomNumber, char *userId, char *userFirstName, char *userLastName)
{
...
return 1;
}
extern "C"
{
...
0
votes
1answer
165 views
Error in storing member function as function pointers in C++
I am trying to store a pointer to a member function in a structure which will be used to call the function later in my program.
Something like this:
// abc.h
namespace XYZ {
typedef void func(const ...
-1
votes
2answers
239 views
Python OO — member function definition and keyword self
I am writting a Python class with this constructor:
#constuctor
def __init__(self, initPt_=[1,1],fun_=Optim_tests.peaks,NITER_=30,alpha_=0.7,NMAX_=5000,FTOL_=10**(-10)):
self.initPt = ...
1
vote
2answers
176 views
How to call member functions from their address
I have a function that resides in a class in an application my objective is to inject a dll into the target proccess and call that member function by its address.
Here is the function:
void ...
1
vote
4answers
871 views
C++ class member function and callback from C API
I am trying to learn how to call this write_data(…) function from the funmain() function in the class as shown in the code bellow. (I know this program works if I just list these two functions without ...
1
vote
4answers
247 views
C++ Class Enumeration Member variable
I have a class with an enumerated type GameStates. In the (public) constructor I initialise GameStates like this:
GameStates enumGameState = Ready;
Then in a public method run() i have a switch ...
1
vote
3answers
456 views
Inherited member function accessing data members
Consider the sample code below:
#include <iostream>
using namespace std;
class A
{
private:
static int a;
int b;
protected:
public:
A() : b(0) {}
...
1
vote
1answer
8k views
error: expected primary-expression before '.' token
I am currently teaching myself C++ using A C++ for Dummies All-In-One; second edition. TO create this program I am using Qt. I understand it to be a good practice to organize objects and classes in ...
0
votes
3answers
76 views
Stack accessible by all member functions of a class
I want all member functions of a class to have access to the same stack. Each member function will push data to the stack and pop data from the stack.
I am having a hard time declaring the stack. I ...
2
votes
1answer
43 views
can we use MemberFunction type as template parameter?
if there's a class T{ void M() };, I want to have a template class that can use T::M as template parameter. say something like this:
T t;
TUser<T::M> user(t);
is it possible?
3
votes
2answers
3k views
Get memory address of member function?
How do I get the absolute address of a member function in C++? (I need this for thunking.)
Member function pointers don't work because I can't convert them to absolute addresses (void *) -- I need to ...
5
votes
3answers
187 views
why can't a volatile object call nonvolatile member function
Why can't a volatile object call a non-volatile member function?
In case of const, it makes sense that calling a non-const member function violates the constness of the the object and hence it is ...
1
vote
2answers
3k views
Call AfxBeginThread with class member function?
How can I call AfxBeginThread with an arbitrary non-static class method? Maybe there is something I can do with boost bind? Below is the expected usage from Microsoft (and is an example of calling a ...
0
votes
1answer
554 views
Passing static method as argument, no address-of operator required?
class ThreadWorker
{
public:
ThreadWorker(void);
virtual ~ThreadWorker(void);
static void DoSomething();
};
int main()
{
boost::thread thread1(ThreadWorker::DoSomething);
...


