Подскажите мне еще пожалуйста почему current_size недоступна в stlen.
Код:
#include <iostream.h>
class m_string
{
friend int stlen (m_string);
public:
m_string();
m_string(int);
~m_string();
char operator[](int i){return str[i];};
m_string operator= (char* cr);
private:
int mas_size, current_size;
char* str;
};
extern int stlen (m_string sttr)
{
while (sttr[current_size] != '\0')
{current_size++;};
return current_size;
};