c++

  1. FireWind

    C++Builder How To Simulate Realistic Physical Effects in C++

    How To Simulate Realistic Physical Effects in C++ By Yilmaz Yoru August 5, 2021 Do you want to simulate throwing images, objects or other components on your form when the user interacts with them using their keyboard or mouse? How can simulate the effect of force on objects on the 2D Form...
  2. FireWind

    C++Builder How To Create Gorgeous Transparent App Windows With C++

    How To Create Gorgeous Transparent App Windows With C++ By Yilmaz Yoru August 2, 2021 C++ Builder is the easiest and fastest C and C++ IDE for building simple or professional applications on the Windows, MacOS, iOS & Android operating systems. It is also easy for beginners to learn with its...
  3. FireWind

    C++Builder This Is How To Get A Substring of a Wide String in C++

    This Is How To Get A Substring of a Wide String in C++ By Yilmaz Yoru July 31, 2021 How can I use substr() method of std::wstring? How can I get a substring of a wide string? Here are the answers with C++ examples. Generally, as an introduction to C++, in addition to int, float, double there...
  4. FireWind

    C++Builder How To Access Individual Character Elements Of A C++ String

    How To Access Individual Character Elements Of A C++ String By Yilmaz Yoru July 30, 2021 How can I access a character of a string? How can I use the at() method of strings? Can I use front() and back() methods in std::string to access characters? Modern C++ uses Strings, Wide Strings, and...
  5. FireWind

    C++Builder The Right Way To Access Character Elements Of A Wide String

    The Right Way To Access Character Elements Of A Wide String By Yilmaz Yoru July 29, 2021 How can I access a character of a wstring? How can I use the at() method of wide strings? Can I use front() and back() methods in std::wstring to access characters? Modern C++ uses Wide Strings and...
  6. FireWind

    C++Builder How To Use Methods To Copy One String to Another String

    How To Use Methods To Copy One String to Another String By Yilmaz Yoru July 11, 2021 How can we copy one string to another string? Here are the answers with C++ examples. Generally, as an introduction to C++, in addition to int, float, double there is another data type, string that we use for...
  7. FireWind

    C++Builder How To Make A Simple REST Client In C++ And More

    How To Make A Simple REST Client In C++ And More By Yilmaz Yoru July 7, 2021 What is REST? What is “RESTful”? How we can develop a simple REST client? How we can use JSON based free APIs with REST? Can we connect to JSON-based Web Services? In this post, we answer your questions and we will...
  8. FireWind

    C++Builder AI Techs :: Minimum Edit Distance Method in Unicode Strings in C++

    AI Techs :: Minimum Edit Distance Method in Unicode Strings in C++ By Yilmaz Yoru July 1, 2021 In the Artificial Intelligence Technology, mostly in the field of Natural Language Processing (NLP), Computer Linguistics and in other fields of Computer Science, The Edit Distance Method is a way...
  9. FireWind

    C++Builder Learn About Implicitly-Defined Copy Constructor

    Learn About Implicitly-Defined Copy Constructor By Yilmaz Yoru June 30, 2021 Do you want to define a copy constructor in a implicit way ? Implicitly-Defined Copy Constructor helps you to do this, here is the full post; The Constructor in C++ is a function, a method in the class, but it is a...
  10. FireWind

    C++Builder Learn about Eligible Default Constructor in C++

    Learn about Eligible Default Constructor in C++ By Yilmaz Yoru June 29, 2021 Do you want to learn what is Eligible Default Constructor or what kind of methods we have that we can declare and use Eligible default constructors? In this post, we will try to explain the Eligible Default...
  11. FireWind

    RAD Studio Learn about Deleted Copy Constructor (Avoiding Implicit Generation of the Copy Constructor)

    Learn about Deleted Copy Constructor (Avoiding Implicit Generation of the Copy Constructor) By Yilmaz Yoru June 24, 2021 Do you want to learn about Deleted Copy Constructor? Do you want to avoid Implicit Generation of the Copy Constructor ? This post explains how you can avoid Implicit...
  12. FireWind

    C++Builder Learn what is Trivial Default Constructor in C++

    Learn what is Trivial Default Constructor in C++ By Yilmaz Yoru June 21, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function. Whenever a new object...
  13. FireWind

    C++Builder Learn to use Deleted Implicitly-Declared Default Constructor

    Learn to use Deleted Implicitly-Declared Default Constructor By Yilmaz Yoru June 20, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function. Whenever a...
  14. FireWind

    C++Builder Learn Implicitly Declared Default Constructor in C++

    Learn Implicitly Declared Default Constructor in C++ By Yilmaz Yoru June 19, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function. Whenever a new...
  15. FireWind

    C++Builder Learn about Deleted Default Constructor in C++

    Learn about Deleted Default Constructor in C++ By Yilmaz Yoru June 18, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function. Whenever a new object of...
  16. FireWind

    C++Builder Learn about Defaulted Default Constructor Outside of a Class Definition

    Learn about Defaulted Default Constructor Outside of a Class Definition By Yilmaz Yoru June 15, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function...
  17. FireWind

    C++Builder Learn Defaulted Default Constructor in C++

    Learn Defaulted Default Constructor in C++ By Yilmaz Yoru June 14, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function. Whenever a new object of a...
  18. FireWind

    C++Builder Learn Definition of the Default Constructor Outside of a Class Definition

    Learn Definition of the Default Constructor Outside of a Class Definition By Yilmaz Yoru June 13, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this...
  19. FireWind

    C++Builder Learn C++ Inheritance :: Ambiguity in Multiple Inheritance

    Learn C++ Inheritance :: Ambiguity in Multiple Inheritance By Yilmaz Yoru May 28, 2021 Let’s remember that, Object Oriented Programming (OOP) is a way to integrate with objects which can contain data in the form (attributes or properties of objects), and code blocks in the form of procedures...
  20. FireWind

    C++Builder Learn C++ Inheritance :: Hybrid Inheritance

    Learn C++ Inheritance :: Hybrid Inheritance By Yilmaz Yoru May 27, 2021 Let’s remember that, Object Oriented Programming (OOP) is a way to integrate with objects which can contain data in the form (attributes or properties of objects), and code blocks in the form of procedures (methods...