Форум программистов, компьютерный форум, киберфорум
C++/CLI Windows Forms
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 5.00/4: Рейтинг темы: голосов - 4, средняя оценка - 5.00
17 / 0 / 1
Регистрация: 08.10.2012
Сообщений: 63
1

Оператор [] для собственного класса

25.05.2016, 18:40. Показов 635. Ответов 1
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Требуется обращаться к строкам списка по их номеру. (A[i] - i-я строка класса Test)
спасибо за любые наметки.
Суть этого такова при нажатии на кнопку должен появится следующий вопрос теста, написано все хорошо и так, НО
что-то отказывается работать. правильно это было бы вот так el = el->next - но VS 2015 так не считает
код с формы
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
#pragma once
#include "Test.h"
 
 
namespace Курсовая2016 {
 
    using namespace System;
    using namespace System::ComponentModel;
    using namespace System::Collections;
    using namespace System::Windows::Forms;
    using namespace System::Data;
    using namespace System::Drawing;
    using namespace System::IO;
    using namespace System::Collections::Generic;
    
    
 
    /// <summary>
    /// Сводка для MyForm3
    /// </summary>
    public ref class MyForm3 : public System::Windows::Forms::Form
    {
        array <String^> ^Words;
        Question ^el;
        //Test ^A;
        List<Question^> ^A;
        int kol = 0, summ = 0;
    private: System::Windows::Forms::MenuStrip^  menuStrip1;
    private: System::Windows::Forms::ToolStripMenuItem^  начатьToolStripMenuItem;
    private: System::Windows::Forms::Button^  button2;
 
    public:
        MyForm3(void)
        {
            InitializeComponent();
            //
            //TODO: добавьте код конструктора
            //
             //A = gcnew Test;
            A = gcnew List <Question^>();
            el = gcnew Question;
            Words = gcnew array <String^>(1000);
            for (int p = 0; p < 1000; p++)
                Words[p] = gcnew String(" ");
            
        }
 
    protected:
        /// <summary>
        /// Освободить все используемые ресурсы.
        /// </summary>
        ~MyForm3()
        {
            if (components)
            {
                delete components;
            }
        }
    private: System::Windows::Forms::GroupBox^  groupBox1;
    protected:
    private: System::Windows::Forms::Button^  button1;
    private: System::Windows::Forms::RadioButton^  radioButton3;
    private: System::Windows::Forms::RadioButton^  radioButton2;
    private: System::Windows::Forms::RadioButton^  radioButton1;
 
    private:
        /// <summary>
        /// Требуется переменная конструктора.
        /// </summary>
        System::ComponentModel::Container ^components;
 
#pragma region Windows Form Designer generated code
        /// <summary>
        /// Обязательный метод для поддержки конструктора - не изменяйте
        /// содержимое данного метода при помощи редактора кода.
        /// </summary>
        void InitializeComponent(void)
        {
            this->groupBox1 = (gcnew System::Windows::Forms::GroupBox());
            this->button2 = (gcnew System::Windows::Forms::Button());
            this->button1 = (gcnew System::Windows::Forms::Button());
            this->radioButton3 = (gcnew System::Windows::Forms::RadioButton());
            this->radioButton2 = (gcnew System::Windows::Forms::RadioButton());
            this->radioButton1 = (gcnew System::Windows::Forms::RadioButton());
            this->menuStrip1 = (gcnew System::Windows::Forms::MenuStrip());
            this->начатьToolStripMenuItem = (gcnew System::Windows::Forms::ToolStripMenuItem());
            this->groupBox1->SuspendLayout();
            this->menuStrip1->SuspendLayout();
            this->SuspendLayout();
            // 
            // groupBox1
            // 
            this->groupBox1->Controls->Add(this->button2);
            this->groupBox1->Controls->Add(this->button1);
            this->groupBox1->Controls->Add(this->radioButton3);
            this->groupBox1->Controls->Add(this->radioButton2);
            this->groupBox1->Controls->Add(this->radioButton1);
            this->groupBox1->Controls->Add(this->menuStrip1);
            this->groupBox1->Dock = System::Windows::Forms::DockStyle::Fill;
            this->groupBox1->Location = System::Drawing::Point(0, 0);
            this->groupBox1->Name = L"groupBox1";
            this->groupBox1->Size = System::Drawing::Size(424, 252);
            this->groupBox1->TabIndex = 0;
            this->groupBox1->TabStop = false;
            this->groupBox1->Text = L"groupBox1";
            this->groupBox1->Enter += gcnew System::EventHandler(this, &MyForm3::groupBox1_Enter);
            // 
            // button2
            // 
            this->button2->Location = System::Drawing::Point(243, 187);
            this->button2->Name = L"button2";
            this->button2->Size = System::Drawing::Size(75, 23);
            this->button2->TabIndex = 4;
            this->button2->Text = L"button2";
            this->button2->UseVisualStyleBackColor = true;
            this->button2->Click += gcnew System::EventHandler(this, &MyForm3::button2_Click);
            // 
            // button1
            // 
            this->button1->Location = System::Drawing::Point(44, 187);
            this->button1->Name = L"button1";
            this->button1->Size = System::Drawing::Size(136, 39);
            this->button1->TabIndex = 3;
            this->button1->Text = L"Дальше";
            this->button1->UseVisualStyleBackColor = true;
            this->button1->Click += gcnew System::EventHandler(this, &MyForm3::button1_Click);
            // 
            // radioButton3
            // 
            this->radioButton3->AutoSize = true;
            this->radioButton3->Location = System::Drawing::Point(44, 138);
            this->radioButton3->Name = L"radioButton3";
            this->radioButton3->Size = System::Drawing::Size(85, 17);
            this->radioButton3->TabIndex = 2;
            this->radioButton3->TabStop = true;
            this->radioButton3->Text = L"radioButton3";
            this->radioButton3->UseVisualStyleBackColor = true;
            // 
            // radioButton2
            // 
            this->radioButton2->AutoSize = true;
            this->radioButton2->Location = System::Drawing::Point(44, 91);
            this->radioButton2->Name = L"radioButton2";
            this->radioButton2->Size = System::Drawing::Size(85, 17);
            this->radioButton2->TabIndex = 1;
            this->radioButton2->TabStop = true;
            this->radioButton2->Text = L"radioButton2";
            this->radioButton2->UseVisualStyleBackColor = true;
            // 
            // radioButton1
            // 
            this->radioButton1->AutoSize = true;
            this->radioButton1->Location = System::Drawing::Point(44, 43);
            this->radioButton1->Name = L"radioButton1";
            this->radioButton1->Size = System::Drawing::Size(85, 17);
            this->radioButton1->TabIndex = 0;
            this->radioButton1->TabStop = true;
            this->radioButton1->Text = L"radioButton1";
            this->radioButton1->UseVisualStyleBackColor = true;
            // 
            // menuStrip1
            // 
            this->menuStrip1->Items->AddRange(gcnew cli::array< System::Windows::Forms::ToolStripItem^  >(1) { this->начатьToolStripMenuItem });
            this->menuStrip1->Location = System::Drawing::Point(3, 16);
            this->menuStrip1->Name = L"menuStrip1";
            this->menuStrip1->Size = System::Drawing::Size(418, 24);
            this->menuStrip1->TabIndex = 5;
            this->menuStrip1->Text = L"menuStrip1";
            // 
            // начатьToolStripMenuItem
            // 
            this->начатьToolStripMenuItem->Name = L"начатьToolStripMenuItem";
            this->начатьToolStripMenuItem->Size = System::Drawing::Size(56, 20);
            this->начатьToolStripMenuItem->Text = L"начать";
            this->начатьToolStripMenuItem->Click += gcnew System::EventHandler(this, &MyForm3::начатьToolStripMenuItem_Click);
            // 
            // MyForm3
            // 
            this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
            this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
            this->ClientSize = System::Drawing::Size(424, 252);
            this->Controls->Add(this->groupBox1);
            this->MainMenuStrip = this->menuStrip1;
            this->Name = L"MyForm3";
            this->Text = L"MyForm3";
            this->Activated += gcnew System::EventHandler(this, &MyForm3::MyForm3_Activated);
            this->groupBox1->ResumeLayout(false);
            this->groupBox1->PerformLayout();
            this->menuStrip1->ResumeLayout(false);
            this->menuStrip1->PerformLayout();
            this->ResumeLayout(false);
 
        }
#pragma endregion
    private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e)
    {
        kol++;
        if (kol < A->Count)
        {
            Paint_form(A[kol]); 
        }
        else
        {
 
        }
 
 
        /*if (el->next != nullptr)
        {
            el = el->next;
            Paint_form(el);
        }
        else
        {*/
        //{
        //  button1->Text = "Завершить";
        //  button1->Enabled = true;
        //  /*String ^str = "Правильных ответов - " + Convert::ToString(summ);
        //  MessageBox::Show(str);*/
        //  MessageBox::Show("Форма закрывается", "Закрытие", MessageBoxButtons::OK, MessageBoxIcon::Warning);
 
        //
        /*}*/
        // Конец теста.
    }
             void Paint_form(Question ^el)  // Номер вопроса - item списка.
             {
                 {
                     int otv;
                     groupBox1->Text = el->Que;
                     radioButton1->Text = el->Ans1;
                     radioButton2->Text = el->Ans2;
                     radioButton3->Text = el->Ans3;
                     if (radioButton1->Checked == true) otv = 1;
                     if (radioButton2->Checked == true) otv = 2;
                     if (radioButton3->Checked == true) otv = 3;
                     if (otv == Convert::ToInt16(el->Key))
                         summ += 1;
 
                 }
             }
 
    private: System::Void MyForm3_Activated(System::Object^  sender, System::EventArgs^  e)
    {
        String ^line("");
        int i;
        StreamReader ^file = gcnew StreamReader("pfpf.txt");
        while ((line = file->ReadLine()) != nullptr)
        {
            System::Console::WriteLine(line);
            Words = line->Split(',');
            el = gcnew Question();
            el->Que = Words[0];
            el->Ans1 = Words[1];
            el->Ans2 = Words[2];
            el->Ans3 = Words[3];
            el->Key = Words[4];
            A->Add(el);
        }
        file->Close(); 
        
    
    }
 
 
    private: System::Void button2_Click(System::Object^  sender, System::EventArgs^  e) {
 
    }
    private: System::Void groupBox1_Enter(System::Object^  sender, System::EventArgs^  e) {
    }
    private: System::Void начатьToolStripMenuItem_Click(System::Object^  sender, System::EventArgs^  e) {
        
        Paint_form(A[0]);
        /*A->begin();
 
        Paint_form(A->begin());*/
 
 
    }
};
}
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
ref class Question
{
public:
    String ^ Que, ^Ans1, ^Ans2, ^Ans3, ^Key;
    Question ^next;
public:
    Question(String ^ A)
    {
        Que = gcnew String(A);
        Ans1 = gcnew String(A);
        Ans2 = gcnew String(A);
        Ans3 = gcnew String(A);
        Key = gcnew String(A);
        next = nullptr;
    }
    Question()
    {
        Que = gcnew String("");
        Ans1 = gcnew String("");
        Ans2 = gcnew String("");
        Ans3 = gcnew String("");
        Key = gcnew String("");
        next = nullptr;
    }
 
};
 
 
 
ref class Test
{
    Question  ^head;
    
public:
    Question ^begin();
    Test(void)
    {
        head = nullptr;
    }
 
    void Add(Question ^new_el);                             // Добавить элемент
    void Clear_all();                                       // Очистка списка
};
 
Question ^Test::begin()
    {
        return head;
    }
// Добавить элемент
void Test::Add(Question ^new_el)
{
    Question     ^old_el;
    if (head == nullptr)
    {
        head = new_el;
    }
    else
    {
        old_el = head;
        while (old_el->next != nullptr)
        {
            old_el = old_el->next;
        }
        old_el->next = new_el;
    }
}
 
// Очистка списка
void Test::Clear_all()
{
    head->Que = "";
    head->Ans1 = "";
    head->Ans2 = "";
    head->Ans3 = "";
    head->Key = "";
    head->next = nullptr;
}
Добавлено через 1 час 23 минуты
Сделано.
модеры а как удалять свои темы?
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
25.05.2016, 18:40
Ответы с готовыми решениями:

Использование собственного класса в Виндовс Формс
Надо сделать программу на Windows Forms. По сути ето типа база данных транспортных средств должа...

Использование собственного класса в Windows Forms
Здравствуйте! Прошу помочь мне с использованием собственного класса (последовательный алгоритм...

Использование собственного класса в Windows Forms
Здравствуйте, есть такая проблема, никак не могу понять как в Winwows Forms использовать свой...

Array из собственного класса
Здравствуйте. Описал классы нота и массив нот: #pragma once #include &lt;stdlib.h&gt; using...

1
OwenGlendower
25.05.2016, 19:29     Оператор [] для собственного класса
  #2

Не по теме:

Цитата Сообщение от vetal21 Посмотреть сообщение
модеры а как удалять свои темы?
Никак.

0
25.05.2016, 19:29
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
25.05.2016, 19:29
Помогаю со студенческими работами здесь

Добавление собственного класса в форму
Имеется свой класс матриц,написанный на чистом с++. Хочу использовать объекты этого класса в...

Запись в собственного класса бинарный файл собственного
есть Свой тип данных дробь. Надо реализовать запись и загрузку в\из бинарного файла. #ifndef...

Для шаблонного класса перегрузить оператор присваивания, copy-конструктор, объекты cin и cout, оператор *
Помогите в следующем: Для класса шаблона следует перегрузить оператор присваивания, конструктор...

Значения по умолчанию для собственного класса
Добрый день! Подскажите, пожалуйста. Есть собственный класс: public class Document {...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
2
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru