which language us good for GUI? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

which language us good for GUI?

Can anyone tell me from where i can learn GUI development?!!..and which language is good for GUI programming

22nd Mar 2018, 2:03 PM
Pratibimba Khadka
Pratibimba Khadka - avatar
6 Answers
+ 2
Actually, any language can be used to develop GUI. You have to find a language that you like and use it.
22nd Mar 2018, 2:09 PM
Шишов Михаил
Шишов Михаил - avatar
+ 9
I prefer C++ GUI apps (mostly for windows). With Qt, to be precise. My reasons: 1-I like C++. I'm a freelancer and usually I can choose my tools (lucky me!) 2-In a managed environment you may have a hard time when you need to use some unmanaged code (long-winded WinAPI declarations in C#, anyone?) 3-Fewer dependencies that are more easily deployed 4-More control over everything. 5-RAII (vs. GC). And even if I allocate with new, I rarely ever delete anything explicitly, because I use smart pointers or the QObject hierarchy. 6-C++ is very exciting these days, I can't wait for a compiler to fully support the new standard. 7-Speed (only at the end of the list. I know it's not that important for the GUI itself, but it tends to be speedier because C++ programs don't suffer from the overhead that runtimes, byte code JIT-compiling and similar technologies add to the program.)
22nd Mar 2018, 2:10 PM
Baraa AB
Baraa AB - avatar
+ 2
Libraries for building GUI Applications: https://awesome-go.com/#gui
22nd Mar 2018, 3:41 PM
Bill Zelenko
Bill Zelenko - avatar
0
but which one is more reliable and easier to start?
22nd Mar 2018, 2:10 PM
Pratibimba Khadka
Pratibimba Khadka - avatar
0
Python is easy and has bindings for many GUI frameworks. Again, any popular PLs can build GUI in runtime. You have to decide what's good for you.
22nd Mar 2018, 2:22 PM
Шишов Михаил
Шишов Михаил - avatar
0
Hariharan Age 25 Date of brith:17/5/1993 Education: Iti(mmv)
22nd Mar 2018, 3:23 PM
Kutty Harish
Kutty Harish - avatar