Tagged Questions
0
votes
1answer
27 views
Getting count() of class static array
Is it possible to get the count of a class defined static array? For example:
class Model_Example
{
const VALUE_1 = 1;
const VALUE_2 = 2;
const VALUE_3 = 3;
public static ...
0
votes
5answers
241 views
defining a fixed size array in a struct
I have defined a struct in side a class. One of the members is an array with a given size.
class foo {
private:
int N;
struct entry {
uint64_t pc;
uint64_t offset;
bool pattern [N];
...
0
votes
1answer
476 views
Static Member Array in C++
I've created a static member array in class named GTAODV.
static int numdetections[MAXNODES];
However, when I try to access this array within the class methods (examples below),
...
1
vote
3answers
544 views
Recursion = scary! (Codeigniter PHP)
I've always hated recursion because my mind cannot cope with infinite loops and I can't find a way to think about it properly. I'm trying to figure out how to print an array of values using it. I want ...
4
votes
1answer
3k views
How to create a Static NSMutableArray in a class in Objective c?
I have Class A which is super class for both class B and class C. I need to store the objects of Class A in 'static' NSMutablearray defined in Class A. Is it possible to modify data stored in ...