static member array of class

when we write a program with class using a static member array, if we want to assign x to y. Don't we need to write an overloaded operator= like dynamic array or even write destructor, if possible can somebody gives an example code to explain it
Last edited on
when we write a program with class using a static member array

You mean the array is a static array (i.e. not dynamic), or is it a static member (i.e. you only have one array member, no matter the number of instances of your class)?
Last edited on
Topic archived. No new replies allowed.