.is there Anyone used threads for a program? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

.is there Anyone used threads for a program?

I understand threads but actually i never used it

27th Aug 2018, 12:07 AM
Hadi Mohseni
Hadi Mohseni - avatar
5 Answers
27th Aug 2018, 12:29 AM
Manual
Manual - avatar
+ 4
Data Sounds good! What was the project, and what did use use to make it?
27th Aug 2018, 12:35 AM
Manual
Manual - avatar
+ 3
Data That is a cool project! I am currenlty branching out to sfml after getting familar with sdl2.
27th Aug 2018, 12:53 AM
Manual
Manual - avatar
+ 2
you have to carefuly plan how do you want to implement threads into your program. Quick solutions, like i once did, may actualy slow down the program one time when i successfuly used threads is when i made a program that used a separate thread for drawing graphics on the window
27th Aug 2018, 12:31 AM
Data
Data - avatar
+ 2
Manual in a window you could spawn "particles" with right mouse button, and when you press the left mouse button all the particles would attract to the mouse pointer. Drawing was done on a separate thread. i made it in c++, also using SFML media library for graphics also this was the first time i used dynamic vector arrays to store objects (particles in this case)
27th Aug 2018, 12:43 AM
Data
Data - avatar