M
MJ
Hi
I have a basic doubt about structure.
I have a class in which a I have declared a static funtion
class A
{
public:
static a;
static f();
};
Can I access the the static function without creating a instance of a
class A.
Can I access the static variable without creating a instance of a class
A.
MJ
I have a basic doubt about structure.
I have a class in which a I have declared a static funtion
class A
{
public:
static a;
static f();
};
Can I access the the static function without creating a instance of a
class A.
Can I access the static variable without creating a instance of a class
A.
MJ