Learn Java Training from the Best Tutors
Search in
Asked by Divya Last Modified
Alapati Hemalatha
An aspiring IT professional and final-year BTech student at Vellore Institute of Technology
Yes, structs can have methods in C++, C#, and even C (with function pointers), but their behavior differs:
#include <stdio.h> typedef struct { int x, y; void (*print)(int, int); } Point; void printPoint(int x, int y) { printf("Point: (%d, %d)\n", x, y); } int main() { Point p = {10, 20, printPoint}; p.print(p.x, p.y); return 0; }
public
), allowing methods, constructors, destructors, and operator overloading.#include <iostream> using namespace std; struct Point { int x, y; void print() { cout << "Point: (" << x << ", " << y << ")" << endl; } }; int main() { Point p = {10, 20}; p.print(); return 0; }
using System; struct Point { public int X, Y; public Point(int x, int y) { X = x; Y = y; } public void Print() { Console.WriteLine($"Point: ({X}, {Y})"); } } class Program { static void Main() { Point p = new Point(10, 20); p.Print(); } }
Each language uses structs differently based on its design principles.
read lessVivek Joglekar
Wroking in IT industry from last 15 years and and trained more than 5000+ Students. Conact ME
View 1 more Answers
Related Questions
I've completed my BE in EEE june 2018. Currently looking for job but ain't finding anything suitable and every time its BPO/KPO's and I'm not intrested. Looking forward to learn any computer language like c/c++ or java and start a career in IT. Any advice on my choices? Which IT course is suitable and advisable for a begineer ?
Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com
Ask a QuestionRecommended Articles
Why Should You Learn Java !
Java is the most famous programming language till date. 20 years is a big time for any programming language to survive and gain strength. Java has been proved to be one of the most reliable programming languages for networked computers. source:techcentral.com Java was developed to pertain over the Internet. Over...
Read full article >
Java: An Object-Oriented Language
Java is the most commonly used popular programming language for the creation of web applications and platform today. Integrated Cloud Applications and Platform Services Oracle says, “Java developers worldwide has over 9 million and runs approximately 3 billion mobile phones”. Right from its first implication as java 1.0...
Read full article >
Some Popular IT Courses in Current Market
In the domain of Information Technology, there is always a lot to learn and implement. However, some technologies have a relatively higher demand than the rest of the others. So here are some popular IT courses for the present and upcoming future: Cloud Computing Cloud Computing is a computing technique which is used...
Read full article >
Why Java is the Most Popular Programming Language
Designed in a flexible and user-friendly demeanor, Java is the most commonly used programming language for the creation of web applications and platform. It allows developers to “write once, run anywhere” (WORA). It is general-purpose, a high-level programming language developed by Sun Microsystem. Initially known as an...
Read full article >
Looking for Java Training Classes?
Learn from the Best Tutors on UrbanPro
Are you a Tutor or Training Institute?
Join UrbanPro Today to find students near youThe best tutors for Java Training Classes are on UrbanPro
The best Tutors for Java Training Classes are on UrbanPro