"arrow operator c++" Code Answer's

You're definitely familiar with the best coding language C++ that developers use to develop their projects and they get all their queries like "arrow operator c++" answered properly. Developers are finding an appropriate answer about arrow operator c++ related to the C++ coding language. By visiting this online portal developers get answers concerning C++ codes question like arrow operator c++. Enter your desired code related query in the search bar and get every piece of information about C++ code related question on arrow operator c++. 

arrow operator c++

By Outrageous OwlOutrageous Owl on Jul 04, 2020
/* 
 the arrow operator is used for accessing members (fields or methods)
 of a class or struct
 
 it dereferences the type, and then performs an element selection (dot) operation
*/

#include <iostream>
using std::cout;

class Entity {
public:
	const char* name = nullptr;
private:
	int x, y;
public:
	Entity(int x, int y, const char* name)
		: x(x), y(y), name(name) {
		printEntityPosition(this); // "this" just means a pointer to the current Entity
	}

	int getX() { return x; }
	int getY() { return y; }

	friend void printEntityPosition(Entity* e);

};

// accessing methods using arrow
void printEntityPosition(Entity* e) {
	cout << "Position: " << e->getX() << ", " << e->getY() << "\n";
}

int main() {
	/* ----- ARROW ----- */

	Entity* pointer = new Entity(1, 1, "Fred");
	//printEntityPosition(pointer); redacted for redundancy (say that 5 times fast)
	
  	cout << (*pointer).name << "\n"; // behind the scenes
	cout << pointer->name << "\n"; // print the name (with an arrow)

	/* ----- NOT ARROW ----- */

	Entity not_a_pointer(2, 2, "Derf");
	//printEntityPosition(&not_a_pointer); & to convert to pointer

	cout << not_a_pointer.name << "\n"; // print the name (with a dot)

	/* ----- LITERALLY NEITHER ----- */

	std::cin.get(); // wait for input
	return 0; // exit program
}

Add Comment

0

All those coders who are working on the C++ based application and are stuck on arrow operator c++ can get a collection of related answers to their query. Programmers need to enter their query on arrow operator c++ related to C++ code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about arrow operator c++ for the programmers working on C++ code while coding their module. Coders are also allowed to rectify already present answers of arrow operator c++ while working on the C++ language code. Developers can add up suggestions if they deem fit any other answer relating to "arrow operator c++". Visit this developer's friendly online web community, CodeProZone, and get your queries like arrow operator c++ resolved professionally and stay updated to the latest C++ updates. 

C++ answers related to "arrow operator c++"

View All C++ queries

C++ queries related to "arrow operator c++"

Browse Other Code Languages

CodeProZone