A member is an element of an object in the object-oriented programming paradigm.
0
votes
1answer
10 views
MembershipUser isApproved not working
I have tried solutions like here How do you update the aspnetdb membership IsApproved value?
But it still doesn't work for me. isAprproved always passes true for new member.
I am creating a member ...
0
votes
0answers
10 views
Umbraco: assign member type dynamically
How can I assign the correct provider/ member type to a new member created in code behind?
I have 2 types of Members in my umbraco.
I want to create multiple members dynamically and need to choose ...
0
votes
0answers
11 views
umbraco Create member with correct type dynamically
I have 2 member types in my Umbraco 6:
Member1
Member2
and I'm using .net Membership providers.
This is what I have in my web.config:
<membership defaultProvider="UmbracoMembershipProvider" ...
0
votes
0answers
16 views
Facebook API how to allow only members of a group to access the app
Hello i am currently using this php code.
With the code i am using now i get a few problems. 1. When i log on it only asks for permission to use id/username not groups. 2. I get errormessage:
...
-2
votes
1answer
56 views
C++, how to delete member **object (using delete)
I have an **object (**personnel) as a member inside(composition) another object, I want to free the memory that **personnel points to and point it to another **temp (personnel=temp), without deleteing ...
1
vote
2answers
63 views
Sum of particular members of an object array
This is my first question here, so hopefully it's a good one (I have searched for an answer, but not found it yet).
I have an event based disease model written in C++, and I'm trying to convert it to ...
0
votes
3answers
61 views
Is it possible to have a std::list as a member of a structure in C++?
I'll describe my question using an example. I have the structure Triangle:
struct Triangle {
int perimeter;
double area;
list <mystruct> sides;
};
where mystruct is:
struct mystruct {
int ...
0
votes
1answer
27 views
Ruby implementing access to members of collection by []
Is there any way to implement access to member of collection by []. I mean i have to program a linked list and i wanna access members by Coll[int]. Is there any way to do that?
0
votes
2answers
55 views
Choosing to make a function a member, non-member, private, public, etc
I've searched around for descriptions of the difference between member and non-member functions and, while I'm still quite confused, I thought I'd give an example to clear things up for me a bit. ...
0
votes
1answer
41 views
Creating a class with a static member container holding all instances of said class?
My goal is to create a class which adds every instance created from it to a static member container, so that all instances can easily be accessed.
The context is a game where objects are created in ...
1
vote
2answers
43 views
std::find Object by Member
Scenario
I’ve run into a speedbump while using the STL with what seems like a normal scenario, simplified here:
class Person {
string Name;
int Age;
};
vector<Person> people;
...
1
vote
0answers
15 views
Simulate multiple default members in Calendar dimension
I'm implementing a Calendar dimension that allows us to incorporate multiple types of calendar (Gregorian, Fiscal, CustomerX...) per Dave Fackler's great article using many-to-many relationships. The ...
1
vote
1answer
29 views
How can I call a Python instance's unspecific method by its member function name?
class worker:
def foo(self):
pass
def foo1(self):
pass
def foo2(self)
pass
The worker instance will have several foo* format member function(the number of foo* ...
0
votes
2answers
34 views
Prolog element is a list member check
I have a little rule in prolog that has to check if an element is a member of a list and write it's position in the list,but it only works if the elemebt i'm looking for is in the 1 place.Need help ...
-3
votes
0answers
29 views
Access Member of abstract class
I currently have a problem, accessing a protected member within the base class.
My classes look like the following:
class A
{
...
public:
void SetMember(Member* p)
...
-7
votes
1answer
42 views
How to call a value from one method to another method in java without declaring the variable all methods(member variable)? [closed]
program:
accept values from the user in a method called accept
convert values of hour and minutes to seconds in method convert
display the result in seconds in display class
only hours, minutes and ...
0
votes
1answer
29 views
how do I redirect my php login to a higher folder? [duplicate]
I have a script in website.com/login/, it contains all the files and forms need to proccess user authentication and contains the forms as well. I have the main login form on my main index, ...
0
votes
2answers
129 views
C++ Invalid use of member function, did you forget the ( )?
I'm working on an assignment where I create my own container using templates. The container I am required to use is called Smaph, which takes in two pairs of numbers and does a variety of functions ...
1
vote
0answers
54 views
New pc causing “namespace of type specified in the imports doesn't contain any public member” in VB.NET
I just got a new PC (Win 7) with VS 2010 (same version as my old PC). I got a VB.NET solution from source control that contains two projects. One of the projects builds fine. The other project ...
0
votes
2answers
52 views
Syntax error of a pointer to member function
Salutations
I'm trying to use the std::sort algorithms on specials objects.
I got a list to sort and a binary function which give me a comparison:
Interesting part of B.cpp
void ...
1
vote
1answer
36 views
How to compare member pointer functions for equality with DLLs involved in Microsoft Visual C?
From what I've read here one can compare two pointers to member functions for equality. However the article seems to cover only the case of a single executable without DLLs involved.
Is it possible ...
0
votes
3answers
62 views
C++ rename class member any ideas?
So here is my problem. Lets say we have a class that can do all the work but when I use it i want to have different name. Here is example of what I mean:
class A
{
public:
int m_Value;
A();
...
0
votes
5answers
106 views
c++ - Call public function with private arguments
In my class: I want to create a public function which has as argument a private member of the class. And be able to call this function from outside of the class.
Something like that:
class ...
0
votes
3answers
44 views
Why was my list altered after last function call?
I have a class Polynomial defined as
template<typename, T>
class Polynomial{
Monomial<T> *head;
public:
Polynomial(Monomial<T> *p=NULL){ head=p;}
...
3
votes
2answers
41 views
Element handling issue in Prolog, but not in a regular list?
I'm trying to write an element handling function in Prolog. It's almost the same as the prolog predicate member/2 but it must do the job in a different way. For being specific; I must say the member/2 ...
0
votes
2answers
40 views
Memset POD struct with this pointer
I have many POD struct with a lot of member variables. Instead of initializing each members in the constructor, I simply use memset. Is this valid in C++?
struct foo
{
foo() { std::memset(this, ...
0
votes
2answers
27 views
Setting a static member of a variable class in php
I'm trying to add a static member to each of my classes that contains the default database connection that they should use when instantiated. Here's how I'm trying to do it:
<?php //other classes ...
0
votes
1answer
56 views
cannot call member function without object [duplicate]
There's the main file (where the error is occurring):
#include "classe_Segundo.h"
#include <iostream>
using namespace std;
CSegundo a;
int main (){
cout << "Equacao de Segundo ...
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* ...
4
votes
6answers
109 views
About sizeof of a class member function pointer [duplicate]
Let's say we have a class A
class A;
and these typedefs
typedef void (A::*a_func_ptr)(void);
typedef void (*func_ptr)(void);
My question is why sizeof(a_func_ptr) returns 16, while ...
1
vote
2answers
57 views
C++ Can I access a struct/class member from a template?
What I want to do is create a function that accepts any class or struct (via templates), but also have the function assume that there's always a specific member in the passed-in class or struct.
In ...
0
votes
1answer
20 views
member function as callback
I would like to pass a member function of an instantiated object to another function. Example code is below. I am open for any strategy that works, including calling functional() from another ...
1
vote
1answer
53 views
C# member cannot be accessed with an instance reference
So i have these variables
List<string> files, images = new List<string>();
string rootStr;
And this threaded function
private static int[] thread_search(string root,List<string> ...
3
votes
4answers
49 views
Processing member of an array of structs in a function
Let's say I have
struct my_type_t {
int x;
int y;
int z;
};
struct my_array_t {
struct my_type_t test;
int otherstuff;
};
int main(void) {
struct my_array_t ...
3
votes
1answer
71 views
stopping a `const` member from being edited under another alias
I have a class with an const abstract member. Since it is abstract, the object must reside in a higher scope. However, it may be edited in this higher scope. I have made this MWE, and added comments ...
1
vote
2answers
59 views
How can I make it impossible for my class member functions to be called in main?
I'm writing a few classes for a homework assignment and I want it to be impossible for my class member functions to be called in main. If they are, I want the program to exit. How would I know when my ...
0
votes
4answers
73 views
How to get a “simple” function pointer from a member function
I'm having a problem with function pointers and nothing I found on the net helped me to solve this problem.
I have a function from a C API which take a pointer of a void function :
extern int ...
0
votes
2answers
103 views
C++ How to access private static variable in another class
I am trying to access a private static variable (*PhysicsEngine::_world->setDebugDrawer(&debugDraw);*) from another class.
First class:
namespace GameEngine
{
class PhysicsEngine
{
...
3
votes
3answers
106 views
member variable and constructor dependent on template parameter
In C++11, I'd like to have a member variable in a class and a constructor for its initialization only if its default template value was chosen (only for supported types like int, of course).
What are ...
1
vote
1answer
69 views
Eclipse/IntelliJ: static imports of members
I'm refactoring something affecting many bits of my code (huge), and I ended up in needing to organise the import of my project so it can add a static import of a member in a class..
After having ...
-8
votes
1answer
83 views
C++ Templates - Passing Class member [closed]
Alright guys!
I'm having a small problem here, to make it simpler, this is more or less how it looks like:
window.h
template <ObjectType &x>
class foo { stuff }
game.h
class gameclass ...
0
votes
0answers
92 views
Call to a member function prepare() on a non-object
I recently updated my website from PHP4 to PHP5 and I want to use the PDO class because of its security (SQL-Injections). But there's something wrong with my code. The error says, $connect isn't an ...
1
vote
1answer
80 views
invalid use of non-static data member (array)
I'm very new to C++, so this may be a pretty noobish issue, but I'm having trouble finding a solution. I've searched around for an answer, and the TA seems to have logically equivalent yet ...
0
votes
4answers
97 views
Inheritence, pointers and Software Architecture
#include <iostream>
class EquationOfMotion
{
public:
// other attributes
virtual void findNextTimeStep() = 0;
};
class SystemModel
{
public:
EquationOfMotion* ...
0
votes
2answers
72 views
Trying to access member function of nested class through pointer
I'm very new to C++, and think this question fundamentally relates to pointers; researched around but couldn't find anything obvious that related to the context below.
I've outlined my code ...
0
votes
2answers
50 views
Constructing class which's property can only be set in constructor, but get anywhere?
I'm trying to create a class which takes value a as a parameters in it's constructor.
It has a private member variable which stores this value. The value should not be changed afterwards.
Here's what ...
2
votes
2answers
89 views
“No appropriate default constructor available”--Why is the default constructor even called?
I've looked at a few other questions about this, but I don't see why a default constructor should even be called in my case. I could just provide a default constructor, but I want to understand why it ...
2
votes
8answers
353 views
C++ - Behavior of enums in member object
I am using Qt in C++ and am struggling with an enum. Consider a case like the one below:
Clone on GitHub: https://github.com/jif/enum
// memberclass.h ...
0
votes
1answer
67 views
Pointer-to-Member function in ref class
I am trying to use a custom .NET ref class to control a button system. It consists of a PictureBox inside the class that is added to the parent form. When it detects a click, it needs to call the ...
12
votes
1answer
129 views
`public` access qualifier and `const`ness. `-Wuninitialized`
class Foo
{
public:
const int x;
};
class Bar
{
private:
const int x;
};
Output:
test.cpp:10:13: warning: non-static const member ‘const int Bar::x’ in class without a ...



