Форум программистов, компьютерный форум, киберфорум
Java: GUI, графика
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.57/7: Рейтинг темы: голосов - 7, средняя оценка - 4.57
0 / 0 / 0
Регистрация: 25.01.2015
Сообщений: 35
1

Создать графический интерфейс для данной программы (GUI)

15.02.2015, 17:49. Показов 1332. Ответов 2
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Java
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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
//A class describes the attributes and behaviors of an object.
class  testBook {
// instance fields
    String name;
    int year;
// method   
    public String getName()
    {
        return name;
    }
// method   
    public int getyear()
    {
        return year;
    }
}
 
//Overload Constructor.
package lab2-3-1;//Overloading
 
class testBook {
    String name;
    int year;
 
    public testBook ()
    {
        this.name = "TheReturnoftheKing";
        this.year = 1955;
    } 
 
    public testBook (String n, int rad)
    {
        this.name = n;
        this.year = rad;
    } 
}
 
public class Main {
 
    public static void main(String[] args) {
        testBook testBook1 = new testBook (); // testBook reference and object 
        testBook testBook2 = new testBook ("TheTwoTowers",1954);
        System.out.println(testBook1.name + ", " + testBook1.year);
        System.out.println(testBook2.name + ", " + testBook2.year);
    }
}
//IS-A Relationship (add in the listings (from item 4, 5 or 6) « IS-A Relationship »).
package lab2-3-2;//IS-A relationship
 
class  testBook {
    public void  pages ()
    {
        System.out.println("testBook can have pages ");
    }
}
class electronictestBook extends  testBook
{
}
class Book extends  testBook
{
}
 
public class Main {
 
    public static void main(String[] args) {
            testBook testBook = new testBook (); // testBook reference and object 
            electronictestBook electronictestBook = new electronictestBook ();
             Book Book = new Book ();
            testBook.pages ();
            electronictestBook.pages ();
            Book.pages ();
    }
 
}
//HAS-A relationship (add in the listings (from item 4, 5, 6 or 7) «HAS-A relationshiponship»).
 
Package lab2-3-3 ;//HAS-A relationship
 
class stranicy
{
    public String name;
    public stranicy (String strname)
    {
        System.out.println("Constructing an stranicy");
        this.name = stranicy;
    }
}
 
abstract class TestBook
{
    private stranicy mystr;
    private String name;
    private int year;
    public TestBook (String name, String strname, int year)
    {
        System.out.println("Constructing an  TestBook ");
        this.name = name;
        this.year = year;
        strCap = new stranicy (strname);
        strCap.name = strname;
    } 
    public String getstranicyName()
    {
        return this.str.name;
    }
    public String getName()
    {
        return name;
    }
    public int getyear()
    {
        return year;
    }
}
 
class electronictestBook extends testBook
{
    private String type;
    public electronictestBook (String name, String strname, int year, String type)
    {
        super(name, strname, year);
        this.type = type;
    }
 
    public String getType()
    {
        return type;
    }
}
 
public class Main {
 
    public static void main(String[] args) {
        electronictestBook Fantasy = new electronictestBook ("TheFellowshipOfTheRing"," TheHobbitorThereandBackAgain",1954,"Fantasy");
        electronictestBook poetry = new electronictestBook ("SobranieStichotvorenii","KamennyGost",2004,"poetry");
        System.out.println("using electronictestBook reference --");
        System.out.println("Fantasy.getName");
        System.out.println("Fantasy.getstrName");
        System.out.println("Fantasy.year");
        System.out.println("Fantasy.getType");
        System.out.println("using testBook reference --");
        System.out.println("poetry.getName");
        System.out.println("poetry.getstrName");
        System.out.println("poetry.year");
        System.out.println("poetry.getType");
    }
 
}
//Overriding (override some methods in your program).
//In overriding a method has same method name, type, number of parameters etc.
package lab2-3-4;// Overriding 
 
class testBook {
    public void publish()
    {
        System.out.println("testBook can publish");
    }
}
class electronictestBook extends testBook {
    public void publish()
    {
        System.out.println("electronictestBook can load");
    }
}
Class audiobook extends testBook {
    public void publish()
    {
        System.out.println("audio can be listen");
    }
}
 
public class Main {
 
    public static void main(String[] args) {
        testBook a = new testBook (); // TestBook reference and object 
        testBook b = new electronictestBook ();
        testBook c = new audiobook ();
        a.publish();
        b.publish();
        c.publish();
    }
 
}
//Polymorphism
File name : TestBook.java 
 
public class testBook {
    private String name;
    private int year;
    public testBook (String name, int year)
    {
        System.out.println("Constructing an testBook ");
        this.name = name;
        this.year = year;
    } 
    public void info()
    {
        System.out.println("info: " + this.name
                   + " " + this.year);
    }
    public String getName()
    {
        return name;
    }
    public int year()
    {
        return year;
    } 
    
    public void setyear(int newyear)
    {
        year = newyear;
       }
}
//Now suppose we extend testBook class as follows
 
//File name : electronictestBook.java 
 
public class electronictestBook extends testBook {
    private String type;
    public electronictestBook (String name, int year, String type)
    {
        super(name, year);
        setType(type);
    }
    
    public void info()
       {
           System.out.println("Within info of electronictestBook class ");
           System.out.println("info: " + getName()
           + " with type " + type);
       }
    
    public String getType()
    {
        return type;
    }
    
    public void setType(String newtype)
    {
        type = newtype;
    }
}
 
//File name : Main.java 
 
public class Main {
 
    public static void main(String[] args) {
        electronictestBook es = new electronictestBook ("SobranieStichotvorenii ", 2004, "poetry");
        testBook s = new electronictestBook ("KamennyGost ", 2004, "poetry");
 
        System.out.println("Call status using electronictestBook reference ——");
        es.info();
 
        System.out.println("\n Call status using  testBook reference——");
        s.info();
    }
}
 
 
//Abstraction
 
Package lab2-3-4;//Abstraction
 
abstract class testBook
{
    private String name;
    protected int year;
    public testBook (String name, int year)
    {
        System.out.println("Constructing an testBook ");
        this.name = name;
        this.year = year;
    } 
    public String getName()
    {
        return name;
    }
    public abstract int year();
}
 
class war extends testBook
{
    private String type;
    public electronictestBook (String name, int year, String type)
    {
        super(name, year);
        this.type = type;
    }
    public int year()
    {
        return year;
    }
    public String getType()
    {
        return type;
    }
}
 
public class Main {
 
    public static void main(String[] args) {
        electronictestBook fantasy = new electronictestBook ("TheFellowshipOfTheRing", 2004, "fantasy");
        testBook poetry = new electronictestBook ("SobranieStichotvorenii", 1954, "poetry");
        System.out.println("using electronictestBook reference --");
        System.out.println("fantasy.getName");
        System.out.println("fantasy.year");
        System.out.println("fantasy.getType");
        System.out.println("using testBook  reference --");
        System.out.println("poetry.getName");
        System.out.println("poetry.year");
        
    }
 
}
//Encapsulation. 
//File name : TestBook.java 
 
public class  testBook {
    private String name;
    private String type;
    private int year;
    
    public String getName()
    {
        return name;
    }
 
    public String getType()
    {
        return type;
    }
 
    public float year()
    {
        return year;
    }
 
    public void setName(String newName)
    {
        name = newName;
    }
 
    public void setType(String newType)
    {
        type = newType;
    }
 
    public void setyear(int newyear)
    {
        year = newyear;
    }
}
 
//File name : Main.java 
public class Main {
 
    public static void main(String[] args) 
    {
        testBook testBook = new TestBook ();
 
          testBook.setName("Mumu");
 
          testBook.setType("story");
 
          testBook.setyear(2003);
 
          System.out.print("Name : " + testBook.getName()+ ", "+
 
                                 " Type : "+ testBook .getType()+ ", "+ 
                                 
                                        " year : "+ testBook.year());
}
 
 
//Interfaces
//Implementing Interfaces
 
//Filename: testBook.java
 
package lab2-3-5 ;
 
public interface testBook {
    public void publish();
    public void ();
}
 
//Filename: electronictestBook.java
 
Package lab2-3-6;
 
public class electronictestBook implements testBook {
    
       public void sail(){
          System.out.println("electronictestBook is publish");
       }
 
       public void written(){
          System.out.println("electronictestBook is written");
       } 
 
       public int numOfPages(int pages)
       {
              return pages;
       }
      
    public static void main(String[] args) {
         electronictestBook e = new electronictestBook ();
          e.publish();
          e.break();
    }
 
//Extending Interfaces:
 
//Filename: fantasy.java
 
public interface Fantasy {
    public void setfantasyName(String name);
    public void setPublData(String name);
}
 
//Filename: Poetry.java
 
public interface Poetry extends fantasy{
       public void poetryRussian(string name);
       public void poetryEnglish(string name);
}
 
//Filename: documentary.java
 
public interface documentary extends fantasy
{
    public void documentaryMaterial(String material);
}
 
 
//Packages
//Put an interface in the package P1:
 package P1;
 
public class testBook {
    
        private String name;
        protected int year;
        public testBook(String name, int year)
        {
            this.name = name;
            this.year = year;
        } 
        public String getName()
        {
            return name;
        }
        public int year()
        {
            return year;
        }
 
}
 
//put an implementation in the same package P1:
package P1;
 
import static java.lang.System.out;
 
public class Main {
 
    public static void main(String[] args) {
        testBook testBook1 = new testBook("TheFellowshipOfTheRing", 1954);
        testBook testBook2 = new testBook("KamennyGost", 2004);
        
        out.println("TestBook1.getName");
        out.println("TestBook1.year");
        out.println("TestBook2.getName");
        out.println("TestBook2.year");
    }
}
 
//Else use keyword import:
 
Package lab-2-3-8;//Package
 
import static java.lang.System.out;
import P1.*;
 
 
public class Main {
 
    public static void main(String[] args) {
        testBook testBook1 = new testBook ("TheFellowshipOfTheRing", 1954);
        testBook testBook2 = new testBook ("KamennyGost, 2004);
        
        out.println("testBook1.getName");
        out.println("testBook1.year");
        out.println("testBook2.getName");
        out.println("testBook2.year");
    }
}
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
15.02.2015, 17:49
Ответы с готовыми решениями:

Графический интерфейс (GUI в Java)
Всем привет, посоветуйте мне какую книжку читать для изучения GUI в Java а то книга Сьерра К....

Создать графический интерфейс для программы
Написали с руководителем программу на языке python, запускается через функцию в терминале, с вводом...

Создать графический интерфейс (GUI) для игры "Крестики-нолики"
#include <stdio.h> #include <string.h> char board={}; void clearscreen(void){ for(int i =...

Графический интерфейс GUI
Подскажите, как присвоить значение из edit, на код, относящийся, например, к кнопке? что то с get...

2
169 / 66 / 15
Регистрация: 24.03.2013
Сообщений: 467
Записей в блоге: 1
18.02.2015, 14:14 2
Команда: Создать
0
170 / 45 / 5
Регистрация: 10.01.2013
Сообщений: 424
19.02.2015, 10:07 3
RickRush, не под все консольные программы легко и быстро создаются GUI, вы сначала попробуйте сами, а если, что-то будет не получаться, мы поможем.

Совет: Легче сначала писать GUI, а потом под него логику ну или по ходу дела. (По крайней мере, для меня так легче)
0
19.02.2015, 10:07
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
19.02.2015, 10:07
Помогаю со студенческими работами здесь

База данных "учебный план специальности". GUI. Графический интерфейс. Пользовательский интерфейс
Всем привет. Свалилась на меня, значит, курсовая по прологу. Все бы ничего, да реализовать ее надо...

Как сделать графический интерфейс для программы?
Доброго времени суток. Подскажите, как создать графический интерфейс. К примеру написал программу...

Подскажите библиотеку GUI, реализующую графический интерфейс
Доброй ночи. Подскажите, пожалуйста, лёгкую и простую библиотеку реализующую графический интерфейс....

Как создать графический интерфейс для приложения
Здравствуйте! Недавно закончил написание программы на Си, но у неё нет графического интерфейса....

Графический интерфейс НЕ GUI! как избавиться от глобальных переменных?
Создаю простенький графический интерфейс function = interface( input_args ) global hAxes...

IDE для Windows, на которых можно сделать графический интерфейс программы
Ребят, не подскажите, какие есть IDE для Windows, на которых можно сделать графический интерфейс...


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

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