Top "Member" questions

A member is an element of an object in the object-oriented programming paradigm.

What should happen to template class static member variables with definition in the .h file

If a template class definition contains a static member variable that depends on the template type, I'm unsure of what …

c++ templates static member standards
I can't reach any class member from a nested class in Kotlin

I want to access a member of the MainFragment class from PersonAdapter class but none of them are available. I …

class kotlin scope member
Always getting 1500 member of distribution list using PowerShell

I would like to get all members (mail address) of a certain distribution list. Currently I just recieve the first 1500 …

powershell active-directory member distribution-list
Why doesn't C++ have a pointer to member function type?

I could be totally wrong here, but as I understand it, C++ doesn't really have a native "pointer to member …

c++ function pointers member
Storing a method as a member variable of a class

I have this as one of my members of the class 'KeyEvent': private delegate void eventmethod(); And the constructor: public …

c# methods delegates member
Can I access new methods in anonymous inner class with some syntax?

Is there any Java syntax to access new methods defined within anonymous inner classes from outer class? I know there …

java syntax inner-classes member
How to assign custom property to jQuery object?

I need to assign a custom property to a jQuery object. Here is the object: var object = $("<div id=…

javascript jquery member
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 …

c++ function constants variable-assignment member
C++ template static member instantiation

#include <map> #include <iostream> template <typename T> class A { static std::map<int, …

c++ templates static instantiation member
Cycle in the struct layout that doesn't exist

This is a simplified version of some of my code: public struct info { public float a, b; public info? c; …

c# constructor struct member cyclic-reference