Ошибка компилятора c2106

The message says that you try to assign to an expression which is not an lvalue. For built-in types, you can only assign to lvalues (that’s where the name comes from: lvalue = value that can be on the left hand side of the assignment operator, while rvalue = value that must be on the right hand side of the assignment operator).

So what is an lvalue or an rvalue? Consider the following code:

int a;
a = 3;

In this assignment a is an lvalue (if it weren’t, the compiler would complain). That is, the expression a refers to an object which can be modified. On the other hand, 3 is an rvalue, that is, basically a value. Of course you cannot assign to 3; the compiler would complain about the statement 3=a; with exactly the same message you got in your code.

So as a first approximation, an lvalue designates an object, while an rvalue designates a value. Note that this is also true for assignment of the form

a = b;

where b also is a variable. What happens here is the so-called lvalue to rvalue conversion: What is assigned is not the object b, but its current value.

Now consider the following case:

int f();
f() = 3;

Here you might argue that the function f does return an object (if you use some user-defined type, you even can see its construction/destruction). But the compiler still complains with the message you got. Why?

Well, even if you consider f to return an object, it is a temporary object which will go away immediately. So it does not make much sense to assign a value because you cannot do anything with it anyway afterwards.

Therefore here’s the second rule:

Whenever there’s an expression which produces a temporary object, C++ defines that expression as rvalue.

And now we come to the definition of MyVector::at() which you did not show, but which, according to the error message, probably looks similar to this:

template<typename T>
 T MyVector<T>::at(int i)
{
  return data[i];
}

This has essentially the same form as f above, as it also returns a T (an employee* in your case). This is why the compiler complains.

And that complaint is helpful: Even if the compiler wouldn’t complain, the code would not dio what you almost certainly intended. The return statement returns a copy of the object data[i]. Thus if the statement payment.at(i)=NULL; had compiled, what would actually happen would be the following:

  1. The internal object data[i] (or however you called it in your code) is copied and the temporary copy returned.
  2. The statement assigned that temporary copy, but leaves the original object in MyVector unchanged.
  3. The temporary copy gets destructed, leaving no trace of your assignment.

This is almost certainly not what you wanted. You wanted to change the internal object. To do so, you have to return a reference to that object. A reference refers to the object it was initialized with instead of making a copy. Correspondingly, a reference, even when returned, is an lvalue (since C++11 there’s a second type of reference which behaves differently, but we don’t need to care about that here). Your corrected function then reads

template<typename T>
 T& MyVector<T>::at(int i)
{
  return data[i];
}

and with that definition, payment.at(i)=NULL; not only compiles, but actually does what you want: Change the internally stored i-th pointer in payment to NULL.

Хорошо, так что, игнорируя мое ленивое кодирование (это просто для того, чтобы заставить программу работать, я уберу ее после того, как она заработает). Я настроил пару операторов if, которые будут генерировать исключения, если я не получу желаемый ввод.

#include<string>
#include<iostream>
using namespace std;

int main()
{

bool flag = false;
int month, day, year;
void header();

class monthClassException
{
public:
monthClassException()
{
message = "Invalid Month";
}
monthClassException(string str)
{
message = str;
}
string what()
{
return message;
}

private:
string message;
};
class dayClassException
{
};
class yearClassException
{
};header();

do
{
try
{
cout << "Please enter your date of birth (MM-DD-YYYY): " << endl;
cin >> month;

cin.ignore(10,'-');
cin >> day;

cin.ignore(10,'-');
cin >> year;if (month > 12 || month < 1)
throw monthClassException("Invalid Month Entry");

if( ((month == 4 || month == 6 || month == 9 || month == 11) && day > 30) || day < 1)
throw dayClassException();

else if ( ((month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12 ) && day > 31) || day < 1)
throw dayClassException();

else if (month == 2 && year % 4 != 0 && day > 28)
throw dayClassException();

else if((month == 2 && year % 4 = 0) && day > 29)
throw dayClassException();
}
catch(monthClassException mCEO)
{
cout << mCEO.what() << endl;
system("pause");
}
catch(dayClassException)
{
cout << "Invalid Day Entered for Selected Month" << endl;
system("pause");
}
catch(yearClassException yCEO)
{
}
}while(!flag);return 0;
}

Я получаю свою ошибку в этом последнем исключении:

            else if((month == 2 && year % 4 = 0) && day > 29)
throw dayClassException();

он говорит, что месяц — недопустимое l-значение (почему сейчас? В самом конце, после того, как я его уже использовал — катастрофически, я признаю.) Это может быть чем-то действительно очевидным, что я не вижу, потому что я один кто это закодировал, или это может быть потому, что я действительно сумасшедший, если заявления где-то напутали.

Есть идеи?

-3

Решение

Вот ошибка:

   year % 4 = 0

ты наверное хотел написать ==

4

Другие решения

= оператор как в

year % 4 = 0

означает назначение, а не сравнение. Отсюда твоя ошибка.
Исправить это

year % 4 == 0

0

У тебя есть year % 4 = 0,
Я думаю, что у вас есть опечатка: вы можете хотеть year % 4 == 0,

Кроме того, я предпочитаю использовать скобки, чтобы сделать код более понятным:

...
else if ((month == 2) && (year % 4 == 0) && (day > 29)) {
throw dayClassException();
}

0

У вас есть оператор присваивания = в вашем состоянии вместо оператора сравнения ==,

Это довольно ясно логическая ошибка. Тем не менее, почему это компилятор ошибка? В конце концов, C ++ позволяет присваивать внутри условия, и это то, что вы могли бы законно делать.

В твоем случае, month == 2 && year % 4 = 0 обрабатывается как ((month == 2) && (year % 4)) = 0 (увидеть Приоритет оператора C ++). Это выражение в скобках оценивается как временное. Но левая часть оператора присваивания должна ссылаться на адрес памяти, на который вы можете записать ( л-значение). Таким образом, ваш код недействителен по той же причине, что 3 = 3 является недействительным. Visual Studio вызывает эту ошибку C2106.

0

В связи с этим предлагается всегда указывать константу в левой части оператора сравнения. Это помогает предотвратить логические ошибки. В качестве примера рассмотрим код

    if year == 0

и по ошибке вы написали:

    if year = 0

результат был бы логической ошибкой.
Вместо этого поместите постоянную 0 на левой стороне, так что

     if 0 = year

будет генерировать синтаксическую ошибку при компиляции, что не позволит вам совершить логическую ошибку (что может быть сложнее отладить)

0

BoBaH26

30 / 30 / 5

Регистрация: 02.12.2010

Сообщений: 255

1

20.09.2011, 23:20. Показов 9060. Ответов 39

Метки нет (Все метки)


Студворк — интернет-сервис помощи студентам

Здравствуйте, при попытке символьному элементу структуры (char name [30]) присвоить такой же символьный элемент выдается ошибка C2106 — левый операнд должен быть левосторонним значением. Вот фрагмент листинга, на всякий случай с описанием самой структуры:

C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
..........
struct List {
        int shifr;
        char name [30];
        int kol;
        float stoim;
    };
List MasList [100],min;
..........
..........
min.shifr=MasList[i].shifr;
        min.name=MasList[i].name; //<------ Эта строка.
        min.kol=MasList[i].kol;
        min.stoim=MasList[i].stoim;

Заранее спасибо!



0



794 / 546 / 61

Регистрация: 11.05.2010

Сообщений: 1,298

Записей в блоге: 1

20.09.2011, 23:37

2

BoBaH26, массивы массивам не присваиваются. Для копирования строк используйте strcpy.



0



186 / 186 / 21

Регистрация: 08.01.2011

Сообщений: 1,139

20.09.2011, 23:38

3

name — это указатель на строку.
Вы присваиваете указателю указатель, а указатель min.name является константным, т.е. его нельзя изменить.



0



30 / 30 / 5

Регистрация: 02.12.2010

Сообщений: 255

20.09.2011, 23:39

 [ТС]

4

Сейчас попробую…



0



talis

20.09.2011, 23:40

Не по теме:

Chelioss, это не указатель. Массив чистой воды

Цитата
Сообщение от BoBaH26
Посмотреть сообщение

char name [30];



0



30 / 30 / 5

Регистрация: 02.12.2010

Сообщений: 255

20.09.2011, 23:41

 [ТС]

6

Chelioss, так а как тогда? Через copy, как сказал talis?



0



186 / 186 / 21

Регистрация: 08.01.2011

Сообщений: 1,139

20.09.2011, 23:41

7

Цитата
Сообщение от talis
Посмотреть сообщение

Не по теме:

Chelioss, это не указатель. Массив чистой воды

Не правильно. name — это указатель на массив, причем name — это константный указатель.



0



30 / 30 / 5

Регистрация: 02.12.2010

Сообщений: 255

20.09.2011, 23:41

 [ТС]

8

Да, кстати, не заметил, это символьный массив.



0



186 / 186 / 21

Регистрация: 08.01.2011

Сообщений: 1,139

20.09.2011, 23:42

9

Цитата
Сообщение от BoBaH26
Посмотреть сообщение

Chelioss, так а как тогда? Через copy, как сказал talis?

Да, либо самому вручную каждый элемент присвоить.



0



30 / 30 / 5

Регистрация: 02.12.2010

Сообщений: 255

20.09.2011, 23:43

 [ТС]

10

Цитата
Сообщение от Chelioss
Посмотреть сообщение

Да, либо самому вручную каждый элемент присвоить.

Ну это не есть хорошо, т.к. у меня массив из структур, а мне его надо отсортировать, и для каждого MasList[i].name писать вручную…. Можно с ума сойти..



0



794 / 546 / 61

Регистрация: 11.05.2010

Сообщений: 1,298

Записей в блоге: 1

20.09.2011, 23:44

11

Chelioss, где он объявлен как указатель?

min — это объект типа List. В struct List есть объявление char name [30];. Соответственно, min.name — массив char из 30 элементов.

Добавлено через 24 секунды

Цитата
Сообщение от Chelioss
Посмотреть сообщение

Да, либо самому вручную каждый элемент присвоить.

Не имеет смысла. Есть библиотечные функции для копирования строк и памяти.



0



Chelioss

186 / 186 / 21

Регистрация: 08.01.2011

Сообщений: 1,139

20.09.2011, 23:46

12

Цитата
Сообщение от BoBaH26
Посмотреть сообщение

Ну это не есть хорошо, т.к. у меня массив из структур, а мне его надо отсортировать, и для каждого MasList[i].name писать вручную…. Можно с ума сойти..

Можно самому написать функцию подобной strcpy. Ну или используйте strcpy.

Добавлено через 1 минуту

Цитата
Сообщение от talis
Посмотреть сообщение

Chelioss, где он объявлен как указатель?
min — это объект типа List. В struct List есть объявление char name [30];. Соответственно, min.name — массив char из 30 элементов.

C++
1
2
char *ptr = name; // работает. Почему? Потому, что name - это char *.
strcpy(name1,name2); // Смотрим на прототип функции char * strcpy ( char * destination, const char * source );

Конечно, надо по другому объяснять, а не примеры приводить, но я просто знаю без доказательства)



0



30 / 30 / 5

Регистрация: 02.12.2010

Сообщений: 255

20.09.2011, 23:48

 [ТС]

13

Не совсем понял с пунктом 1



0



794 / 546 / 61

Регистрация: 11.05.2010

Сообщений: 1,298

Записей в блоге: 1

20.09.2011, 23:50

14

Цитата
Сообщение от Chelioss
Посмотреть сообщение

char *ptr = name; // работает. Почему? Потому, что name — это char *.

Работает благодаря приведению типов. Объявление смотрите — char name[30].



0



Chelioss

186 / 186 / 21

Регистрация: 08.01.2011

Сообщений: 1,139

20.09.2011, 23:50

15

Цитата
Сообщение от BoBaH26
Посмотреть сообщение

Не совсем понял с пунктом 1

Вы про

C++
1
char *ptr = name;

?
name имеет тип const char *, поэтому его можно присвоить другому указателю.



0



talis

794 / 546 / 61

Регистрация: 11.05.2010

Сообщений: 1,298

Записей в блоге: 1

20.09.2011, 23:52

16

C++
1
char name [30];

Какой тип объявлен?



0



186 / 186 / 21

Регистрация: 08.01.2011

Сообщений: 1,139

20.09.2011, 23:52

17

Цитата
Сообщение от talis
Посмотреть сообщение

Работает благодаря приведению типов. Объявление смотрите — char name[30].

А что такое name? без []? Он по вашему мнению вообще не существует без []. А со [] — это всего лишь i-тый символ, а не массив.



0



30 / 30 / 5

Регистрация: 02.12.2010

Сообщений: 255

20.09.2011, 23:54

 [ТС]

18

char *ptr = name;
Получается, мы символьному указателю ptr присваиваем адрес первого элемента массива?



0



794 / 546 / 61

Регистрация: 11.05.2010

Сообщений: 1,298

Записей в блоге: 1

20.09.2011, 23:55

19

Chelioss, по моему мнению (и позвольте мне самому его высказывать), name без [] — это массив из 30-ти char, как и объявлено выше. А к указателю оно приводится автоматически благодаря приведению типов.

Добавлено через 24 секунды

Цитата
Сообщение от BoBaH26
Посмотреть сообщение

char *ptr = name;
Получается, мы символьному указателю ptr присваиваем адрес первого элемента массива?

Да. Адрес первого элемента массива name.



0



186 / 186 / 21

Регистрация: 08.01.2011

Сообщений: 1,139

20.09.2011, 23:59

20

talis
Так мы ни к чему и не придем. Нужно какое-то доказательство.



0



I’m trying to write a fake vector for my class assignment, and I currently get an error in the member function pushBack.
The compiler doesn’t seem to like incrementing the SIZE variable which holds the number of elements in the «vector». Is there something I might need to fix?
Your assistance would be highly appreciated for helping me with this, and any other problems you might happen to find.

/*
Write a simple program that simulates the behavior of vectors
-You should be able to add and remove elements to the vector
-You should be able to access an element directly.
-The vector should be able to hold any data type.
*/


#include <stdio.h>

template <class T, int SIZE>
class Vector
{
 #pragma region constructors&destructors
 private:
 T vec[SIZE];

 public:

 Vector()
 {}
 ~Vector()
 {}
 #pragma endregion

 template <class T/*, int SIZE*/>
 void defineVec(T var)
 {
  for(int i=0; i<SIZE; i++)
  {
   vec[i] = var;
  }
  //printf("All elements of the vector have been defined with %", var)
  //What should I do when trying to print a data type or variable 
                //of an unspecified one along with the '%'?
 }

 template <class T/*, int SIZE*/>
 void pushBack(T var)
 {
  SIZE ++; //C1205
  vec[SIZE - 1] = var;
 }

 template <class T/*, int SIZE*/>
 void popBack()
 {
  vec[SIZE - 1] = NULL;
  SIZE--;
 }

 //template <class T/*, int SIZE*/>
 void showElements()
 {
  for(int i=0; i<SIZE; i++)
  {
   printf("%d",vec[i]);
   printf("n");
  }
 }
};

int main()
{
 Vector <int, 5> myints;
 myints.pushBack(6);
 myints.showElements();
 return 0;
}

asked Sep 9, 2010 at 23:58

Mr. Czar's user avatar

1

You’re passing SIZE as a template parameter. Inside the definition of a template, a non-type template parameter is basically a constant — i.e., you can’t modify it.

You’ll need to define a separate variable to keep track of how much of the storage in your vector-alike is currently being used.

answered Sep 10, 2010 at 0:02

Jerry Coffin's user avatar

Jerry CoffinJerry Coffin

472k80 gold badges621 silver badges1108 bronze badges

3

The message says that you try to assign to an expression which is not an lvalue. For built-in types, you can only assign to lvalues (that’s where the name comes from: lvalue = value that can be on the left hand side of the assignment operator, while rvalue = value that must be on the right hand side of the assignment operator).

So what is an lvalue or an rvalue? Consider the following code:

int a;
a = 3;

In this assignment a is an lvalue (if it weren’t, the compiler would complain). That is, the expression a refers to an object which can be modified. On the other hand, 3 is an rvalue, that is, basically a value. Of course you cannot assign to 3; the compiler would complain about the statement 3=a; with exactly the same message you got in your code.

So as a first approximation, an lvalue designates an object, while an rvalue designates a value. Note that this is also true for assignment of the form

a = b;

where b also is a variable. What happens here is the so-called lvalue to rvalue conversion: What is assigned is not the object b, but its current value.

Now consider the following case:

int f();
f() = 3;

Here you might argue that the function f does return an object (if you use some user-defined type, you even can see its construction/destruction). But the compiler still complains with the message you got. Why?

Well, even if you consider f to return an object, it is a temporary object which will go away immediately. So it does not make much sense to assign a value because you cannot do anything with it anyway afterwards.

Therefore here’s the second rule:

Whenever there’s an expression which produces a temporary object, C++ defines that expression as rvalue.

And now we come to the definition of MyVector::at() which you did not show, but which, according to the error message, probably looks similar to this:

template<typename T>
 T MyVector<T>::at(int i)
{
  return data[i];
}

This has essentially the same form as f above, as it also returns a T (an employee* in your case). This is why the compiler complains.

And that complaint is helpful: Even if the compiler wouldn’t complain, the code would not dio what you almost certainly intended. The return statement returns a copy of the object data[i]. Thus if the statement payment.at(i)=NULL; had compiled, what would actually happen would be the following:

  1. The internal object data[i] (or however you called it in your code) is copied and the temporary copy returned.
  2. The statement assigned that temporary copy, but leaves the original object in MyVector unchanged.
  3. The temporary copy gets destructed, leaving no trace of your assignment.

This is almost certainly not what you wanted. You wanted to change the internal object. To do so, you have to return a reference to that object. A reference refers to the object it was initialized with instead of making a copy. Correspondingly, a reference, even when returned, is an lvalue (since C++11 there’s a second type of reference which behaves differently, but we don’t need to care about that here). Your corrected function then reads

template<typename T>
 T& MyVector<T>::at(int i)
{
  return data[i];
}

and with that definition, payment.at(i)=NULL; not only compiles, but actually does what you want: Change the internally stored i-th pointer in payment to NULL.

The message says that you try to assign to an expression which is not an lvalue. For built-in types, you can only assign to lvalues (that’s where the name comes from: lvalue = value that can be on the left hand side of the assignment operator, while rvalue = value that must be on the right hand side of the assignment operator).

So what is an lvalue or an rvalue? Consider the following code:

int a;
a = 3;

In this assignment a is an lvalue (if it weren’t, the compiler would complain). That is, the expression a refers to an object which can be modified. On the other hand, 3 is an rvalue, that is, basically a value. Of course you cannot assign to 3; the compiler would complain about the statement 3=a; with exactly the same message you got in your code.

So as a first approximation, an lvalue designates an object, while an rvalue designates a value. Note that this is also true for assignment of the form

a = b;

where b also is a variable. What happens here is the so-called lvalue to rvalue conversion: What is assigned is not the object b, but its current value.

Now consider the following case:

int f();
f() = 3;

Here you might argue that the function f does return an object (if you use some user-defined type, you even can see its construction/destruction). But the compiler still complains with the message you got. Why?

Well, even if you consider f to return an object, it is a temporary object which will go away immediately. So it does not make much sense to assign a value because you cannot do anything with it anyway afterwards.

Therefore here’s the second rule:

Whenever there’s an expression which produces a temporary object, C++ defines that expression as rvalue.

And now we come to the definition of MyVector::at() which you did not show, but which, according to the error message, probably looks similar to this:

template<typename T>
 T MyVector<T>::at(int i)
{
  return data[i];
}

This has essentially the same form as f above, as it also returns a T (an employee* in your case). This is why the compiler complains.

And that complaint is helpful: Even if the compiler wouldn’t complain, the code would not dio what you almost certainly intended. The return statement returns a copy of the object data[i]. Thus if the statement payment.at(i)=NULL; had compiled, what would actually happen would be the following:

  1. The internal object data[i] (or however you called it in your code) is copied and the temporary copy returned.
  2. The statement assigned that temporary copy, but leaves the original object in MyVector unchanged.
  3. The temporary copy gets destructed, leaving no trace of your assignment.

This is almost certainly not what you wanted. You wanted to change the internal object. To do so, you have to return a reference to that object. A reference refers to the object it was initialized with instead of making a copy. Correspondingly, a reference, even when returned, is an lvalue (since C++11 there’s a second type of reference which behaves differently, but we don’t need to care about that here). Your corrected function then reads

template<typename T>
 T& MyVector<T>::at(int i)
{
  return data[i];
}

and with that definition, payment.at(i)=NULL; not only compiles, but actually does what you want: Change the internally stored i-th pointer in payment to NULL.

The message says that you try to assign to an expression which is not an lvalue. For built-in types, you can only assign to lvalues (that’s where the name comes from: lvalue = value that can be on the left hand side of the assignment operator, while rvalue = value that must be on the right hand side of the assignment operator).

So what is an lvalue or an rvalue? Consider the following code:

int a;
a = 3;

In this assignment a is an lvalue (if it weren’t, the compiler would complain). That is, the expression a refers to an object which can be modified. On the other hand, 3 is an rvalue, that is, basically a value. Of course you cannot assign to 3; the compiler would complain about the statement 3=a; with exactly the same message you got in your code.

So as a first approximation, an lvalue designates an object, while an rvalue designates a value. Note that this is also true for assignment of the form

a = b;

where b also is a variable. What happens here is the so-called lvalue to rvalue conversion: What is assigned is not the object b, but its current value.

Now consider the following case:

int f();
f() = 3;

Here you might argue that the function f does return an object (if you use some user-defined type, you even can see its construction/destruction). But the compiler still complains with the message you got. Why?

Well, even if you consider f to return an object, it is a temporary object which will go away immediately. So it does not make much sense to assign a value because you cannot do anything with it anyway afterwards.

Therefore here’s the second rule:

Whenever there’s an expression which produces a temporary object, C++ defines that expression as rvalue.

And now we come to the definition of MyVector::at() which you did not show, but which, according to the error message, probably looks similar to this:

template<typename T>
 T MyVector<T>::at(int i)
{
  return data[i];
}

This has essentially the same form as f above, as it also returns a T (an employee* in your case). This is why the compiler complains.

And that complaint is helpful: Even if the compiler wouldn’t complain, the code would not dio what you almost certainly intended. The return statement returns a copy of the object data[i]. Thus if the statement payment.at(i)=NULL; had compiled, what would actually happen would be the following:

  1. The internal object data[i] (or however you called it in your code) is copied and the temporary copy returned.
  2. The statement assigned that temporary copy, but leaves the original object in MyVector unchanged.
  3. The temporary copy gets destructed, leaving no trace of your assignment.

This is almost certainly not what you wanted. You wanted to change the internal object. To do so, you have to return a reference to that object. A reference refers to the object it was initialized with instead of making a copy. Correspondingly, a reference, even when returned, is an lvalue (since C++11 there’s a second type of reference which behaves differently, but we don’t need to care about that here). Your corrected function then reads

template<typename T>
 T& MyVector<T>::at(int i)
{
  return data[i];
}

and with that definition, payment.at(i)=NULL; not only compiles, but actually does what you want: Change the internally stored i-th pointer in payment to NULL.

  • Remove From My Forums
  • Question

  •  Hi All,

    class Bucket  
        {  
        public:  
            Bucket() {count=0label=-1; };  
        public: float label, count;  
     
                void displayData();  
                float getLabel();  
        }; 
    const int MAX=2000;
     Bucket ang[MAX];  

    ifstream inlabel(«Labels of Buckets.txt»);  

     

    k=0;
    float labelset;
    while(inlabel >> labelset && k<1023)
    {
     ang[k].getLabel() = labelset;
     cout << ang[k].getLabel() << endl;
     k++;
    }
    inlabel.close();  
     
     
    float Bucket::getLabel()  
    {  
        return label;  

       Why it shows»error C2106: ‘=’ : left operand must be l-value»?? I don’t really understand what it means, sicne my label is defined as a float already.

        Thanks a lot!


    Thank you for replying! I love this forum!

    • Edited by

      Saturday, August 9, 2008 12:05 AM
      typo

Answers

  • The easy fix is to have getLabel return a float& instead of a float, but then the name getLabel is a misnomer. So a better option would be to have separate member functions for getting and setting label:

    class Bucket 
    public
      Bucket() : label_(-1.0f), count_(0.0f) { } 
      float getLabel() const { return label_; } 
      void setLabel(float l) { label_ = l; } 
    private
      float label_; 
      float count_; 
    }; 

    This is common enough that it is normal to elide the ‘get’ and ‘set’ part of the names, and distinguish between the methods only by their parameters and return types:

    class Bucket 
    public
      Bucket() : label_(-1.0f), count_(0.0f) { } 
      float label() const { return label_; } 
      void label(float l) { label_ = l; } 
    private
      float label_; 
      float count_; 
    }; 
    • Marked as answer by
      Yan-Fei Wei
      Wednesday, August 13, 2008 6:50 AM

Понравилась статья? Поделить с друзьями:
  • Ошибка компилятора c2102
  • Ошибка компилятора c2088
  • Ошибка компилятора c2079
  • Ошибка компилятора c2065
  • Ошибка компилятора c2064