• Home
  • About
  • Social
    • Twitter
    • LinkedIn
    • Instagram
Starby Four

Vibes|Music|Tech

  • Home
  • About
  • Social
    • Twitter
    • LinkedIn
    • Instagram
  • Home
  • About
  • Social
    • Twitter
    • LinkedIn
    • Instagram

No Widgets found in the Sidebar Alt!

  • Tech

    Defining a Member Function With a Parameter-–C++ Notes (C Plus Plus Notes)

    May 26, 2021 /

    Defining a Member Function With a Parameter A member function can require one or more parameters that represent additional data it needs to perform its task. A function call will supply arguments for each parameter. A member function is called by following the object name with a dot operator (.), the function name, and a set of parenthesis containing the function’s arguments. A parameter list may contain any number of parameters, including none at all (represented by empty parentheses) to indicate that a function does not require any parameters. The number and types of arguments in a function call must match the number & types of the parameter list.

    read more
    Aaron Comments Off on Defining a Member Function With a Parameter-–C++ Notes (C Plus Plus Notes)

    You May Also Like

    What is GIT? GIT–Version Control System

    May 20, 2021

    Arch Linux/Slackware Linux Install Notes

    June 1, 2021

    Blockchain & Money: Session 17: Secondary Markets and Crypto-Exchanges, by M.I.T. Sloan School of Management with Professor Gary Gensler

    April 21, 2021
  • Tech

    Declarations, Prototypes, Definitions, & Implementations–C++ Notes (C Plus Plus Notes)

    May 26, 2021 /

    Declarations–a declaration introduces a name into a scope. Generally speaking, a scope is either an entire ‘.cpp’ file (source file) or anything in code delimited by {} (braces), be it a function, a loop within a function, or even an arbitrarily placed block of {} within a function. A name introduced, is visible within the scope from the point at which it is declared to the end of that scope. A declaration merely tells the compiler how to use something, it does not actually create anything. Prototypes–a prototype is just another name for a declaration of a function. Definitions–a definition fully specifies an entity. Definitions are where the actual creation…

    read more
    Aaron Comments Off on Declarations, Prototypes, Definitions, & Implementations–C++ Notes (C Plus Plus Notes)

    You May Also Like

    Hackers Breach Thousands of Security Cameras, Exposing Tesla, Jails, Hospitals…

    March 10, 2021

    Blockchain & Money: Session 8: Public Policy by M.I.T. Sloan School of Management with Professor Gary Gensler

    April 16, 2021

    A 3-Tiered Approach to Securing Your Home Network

    March 10, 2021
  • Tech

    Header Files, Source Files, & Extension Names–C++ Notes (C Plus Plus Notes)

    May 26, 2021 /

    What’s the difference between Header files & Source files? Basically, header files are #included and not compiled, whereas source files are compiled and not #included. So do not compile ‘.h‘ files, and do not #include ‘.cpp‘ Source files. Also, do not #include the same .h file twice. This will lead to an error. Extensions All files are fundamentally the same in that they’re all text file, however different kinds of files should have different extensions: Header files should use a .h extension (.h/.hpp/.hxx). Which particular one of these you use doesn’t matter. C source files should use .c (.c only). (But that’s for ‘C’ language.)

    read more
    Aaron Comments Off on Header Files, Source Files, & Extension Names–C++ Notes (C Plus Plus Notes)

    You May Also Like

    What is a “Function” in Programming?, & What is “Object Oriented Programming” (OOP)–Notes

    May 24, 2021

    Functions–STRUCTURED PROGRAMMING Course Notes

    May 27, 2021

    Security Engineering Analysis Framework Notes…

    June 1, 2021
  • Tech

    Class Methods & Separating Interface From Implementation–C++ Notes (C Plus Plus Notes)

    May 26, 2021 /

    Class Methods Methods, or member functions, are functions that belong to the class. There are two ways to define functions that belong to a class, or member functions, or methods. Inside the class definition Outside the class definition (including from a different file like a source file) To define a member function outside the class definition, you have to declare it inside the class (with a function prototype), and then define it outside of the class. This is done by specifying the name of the class, followed by the scope resolution operator ( :: ), followed by the name of the function. Separating Interface from Implementation *Note: It’s better software…

    read more
    Aaron Comments Off on Class Methods & Separating Interface From Implementation–C++ Notes (C Plus Plus Notes)

    You May Also Like

    Blockchain & Money: Session 21: Post Trade Clearing, Settlement, and Processing, by M.I.T. Sloan School of Management with Professor Gary Gensler

    April 21, 2021

    Classes: A Deeper Look, Part 2–STRUCTURED PROGRAMMING Course Notes

    May 31, 2021

    Sorting &Swapping Elements, & Bubble Sort Algorithms!!! [Ruby Programming Language Notes]

    May 19, 2021
  • Tech

    Classes & Objects–C++ Notes (C Plus Plus Notes)

    May 26, 2021 /

    C++ Classes & Objects Classes and Objects are the two main aspects of OOP. Ex: Class Objects Apple Fruit Banana Mango or: Class Object Volvo Car Audi Toyota A class is a template for objects, and an object is an instance of a class. When the individual objects are created they inherit all the variables and functions from the class. Everything in C++ is associated with classes & objects, along with its attributes (data members–such as “weight” & “color”), and methods (member functions–such as “drive” & “brake” for a “car”). Attributes & methods are basically variables & functions that belong to the class. These are often referred to as “class…

    read more
    Aaron Comments Off on Classes & Objects–C++ Notes (C Plus Plus Notes)

    You May Also Like

    Protected: What is Equinix? And Why Are They So Important??

    March 23, 2021

    The Essentials of Networking–NETWORKING, SECURITY, & MORE ESSENTIALS—CompTIA A+ (220-1001) A-PLUS Certification Prep Course Notes

    May 11, 2021

    Network Monitoring–Advanced IP Networking–NETWORKING, SECURITY, & MORE ESSENTIALS—CompTIA Network+ (N10-007) NETWORK-PLUS Certification Prep Course Notes

    May 16, 2021
  • Tech

    Functions, & O.O.P.–C++ Notes (C Plus Plus Notes)

    May 25, 2021 /

    Functions Performing a task in a program requires a function! The function hides from its user the complex tasks that it performs. C++ Functions–A function is a block of code which only runs when it is called. Data, known as parameters, can be passed into a function. Functions are used to perform certain tasks, or actions, and they are important for reusing code: Define the code once, and use it many times. C++ provides some pre-defined functions, such as ‘main()‘ which is used to execute code. But you can also create your own functions to perform certain actions. C++ Functions consist of two parts: Declaration–the functions name, return type, and…

    read more
    Aaron Comments Off on Functions, & O.O.P.–C++ Notes (C Plus Plus Notes)

    You May Also Like

    Securing TCP/IP–NETWORKING, SECURITY, & MORE ESSENTIALS—CompTIA Network+ (N10-007) NETWORK-PLUS Certification Prep Course Notes

    May 14, 2021

    Wireless, Virtual, Cloud, & Mobile Networking–Advanced IP Networking–NETWORKING, SECURITY, & MORE ESSENTIALS—CompTIA Network+ (N10-007) NETWORK-PLUS Certification Prep Course Notes

    May 15, 2021

    A 3-Tiered Approach to Securing Your Home Network

    March 10, 2021
  • Tech

    Computer Science (CompSci) Notes

    May 3, 2021 /

    Step 1–Define the problem to solve Step 2–Define a solution Step 3-Write a program that implements the solution Step 4-Compile the program Step 5-Link object files Step 6-Test program Step 7-Debug C++ (C plus plus) files should end in a “.cpp” extension to indicate a C++ source file. (ex: name.cpp) Use a C++ compiler to compile a C++ (.cpp) program. The C++ compiler sequentially goes through each source code (.cpp) file in your program and does 2 important tasks: FIRST, it checks the code to make sure it follows the rules of the C++ language. If it does not, the compiler will give you an error to help pinpoint what…

    read more
    Aaron Comments Off on Computer Science (CompSci) Notes

    You May Also Like

    Inline Functions, References, & Reference Parameters–Functions–STRUCTURED PROGRAMMING Course Notes

    May 28, 2021

    Arithmetic Operators Notes

    May 24, 2021

    Symbols!!! [Ruby Programming Language Notes]

    May 19, 2021
Newer Posts 

Archives

Categories

More

About

Documentation

Vim

Recent Posts

  • Metaverse security is a thing because security is still a thing…
  • What is a password manager and why do you need one…
  • What Is The Metaverse?
  • FAA Plans Warnings on 5G…What 5G Means for the FAA, FCC and Air-safety…
  • Blockchain & Money: Session 18: , by M.I.T. Sloan School of Management with Professor Gary Gensler

Tags

2020 A+ Bitcoin Blockchain C++ Careers CLI Cloud Coding CompTIA CompTIA A+ CompTIA Network+ Course Notes Covid-19 Crypto Cryptography Cyberattack Cybersecurity Data Structures Definitions Economy Essential Music Functions Learning Life M.I.T. Methods Mobile Music Music Video Networking News Notes NYC Peering Programming Ruby Security Structured Programming TCP/IP Tech Terminal The Internet Video Wireless Networking
© 2025 Starby Four.
Ashe Theme by WP Royal.