Where Can I Find a Concise Resource on Common Programming Terminology?

Click For Summary
SUMMARY

The discussion centers on the need for concise resources that explain common programming terminology, particularly for non-native English speakers. Key terms identified include "class," "function," "command," "object," "element," "handler," "method," "parameters," and "properties." Participants suggest looking for C++ guides or primers in native languages to better understand these concepts. Additionally, the term "handler" is clarified in the context of Windows programming, referring to functions that manage specific message types or device drivers.

PREREQUISITES
  • Familiarity with basic programming concepts such as classes and functions.
  • Understanding of programming syntax common across languages.
  • Knowledge of C++ programming language fundamentals.
  • Basic comprehension of Windows programming and message handling.
NEXT STEPS
  • Research C++ programming guides available in your native language.
  • Explore resources on common programming terminology across multiple languages.
  • Study the concept of message handlers in Windows programming.
  • Learn about the syntax and usage of functions in various programming languages.
USEFUL FOR

This discussion is beneficial for non-native English speakers, beginner programmers, educators, and anyone seeking to enhance their understanding of programming terminology across different languages.

mather
Messages
146
Reaction score
0
hello

english is not my native language and the few programming literature I have read in my language, is so badly translated from english, that makes it more difficult to comprehend

I understand that almost all programming languages share some terms, like class, function, command, object, element, handler, method, parameters, properties, etc and most of them also share the same syntax eg something1.something2(something3)

is there a consice resource about these to refer to ?

thanks!
 
Technology news on Phys.org
mather said:
Is there a consice resource about these to refer to ?
Look for a C++ guide or primer or reference in your native language for descriptions of most of these terms.

"handler" - in the case of Windows this could mean the functions that handle specific message types that are sent to a Windows program, called message handlers. The other common usage for handler is in reference to a device driver, and could mean either the entire device driver or the interrupt portion of the device driver.

"command" - could refer to the text entered at a dos or unix console window to enter a command.
 

Similar threads

  • · Replies 13 ·
Replies
13
Views
4K
  • · Replies 5 ·
Replies
5
Views
4K
  • · Replies 1 ·
Replies
1
Views
3K