What is the difference between "class" in C++/Java and "struct" in C#?

Asked by Last Modified  

2 Answers

Learn Java

Follow 1
Answer

Please enter your answer

I am online Quran teacher 7 years

a "class" is a blueprint for creating objects with potential for complex behavior, including inheritance and access modifiers, while a "struct" in C# is essentially a lightweight data structure, considered a "value type" which means it's generally used for simple data groupings and is often preferred...
read more
a "class" is a blueprint for creating objects with potential for complex behavior, including inheritance and access modifiers, while a "struct" in C# is essentially a lightweight data structure, considered a "value type" which means it's generally used for simple data groupings and is often preferred when memory efficiency is crucial, unlike a class which is a "reference type" and can be more complex; read less
Comments

Developer and Computer Science graduate from Vellore Institute of Technology, Chennai, India

Key Differences Between class (C++/Java) and struct (C#) Feature class in C++/Java struct in C# Type Reference type Value type Memory Storage Stored in heap (reference) Stored in stack (value) Default Access Modifier Private (C++), Public (Java) Public Inheritance...
read more
Key Differences Between class (C++/Java) and struct (C#) Feature class in C++/Java struct in C# Type Reference type Value type Memory Storage Stored in heap (reference) Stored in stack (value) Default Access Modifier Private (C++), Public (Java) Public Inheritance Support Supports inheritance Limited inheritance (cannot inherit from a class) Garbage Collection Yes (Java), Optional in C++ No (automatically deallocated when out of scope) Performance Slightly slower (heap allocation) Faster for small data structures (stack allocation) Best Use Cases Large, complex objects, need polymorphism Small, lightweight data structures like coordinates or points Summary: Use class when you need object-oriented features like inheritance, polymorphism, and heap allocation. Use struct in C# for small, simple data types that don’t need inheritance and benefit from stack allocation. read less
Comments

Related Questions

Can you use abstract and final both with a method? Why?
No because we have to provide an abstract method with implementation in the subclass (the child class of the parent class in which the abstract method was declared). And for providing this implementation...
Sushil
Is there any difference between Serializalble and Externalizable interface?
http://www.codingeek.com/java/io/differences-serializable-externalizable-interface-java-tutorial
Vathsala
What is Constructor in Java?
A constructor in is a block of code similar to a method that's called when an instance of an object is created.
Ujwalajagdale
0 0
8
simple way to explane the servlet in java
Servlet is a program wich executed in server and assists in responding to client queries..... Usually confidential tasks are done by using servlets or other server side codes
Anish
What is JavaBean?
A JavaBean is just a standard All properties private (use getters/setters) A public no-argument constructor Implements Serializable. That's it. It's just a convention. Lots of libraries...
Ankit
0 0
6

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

How to create Rest web services in Java
Web services are web application components that lets two different applications to communicate over the network.Let if an application which in written java provides web services can be communicated through...

Differences Between HashMap vs HashSet In Java.
HashSet HashMap HashSet implements Set interface. HashMap implements Map interface. HashSet stores the data as objects. HashMap stores the data as key-value pairs. HashSet...

How to create a Singleton class?
How to create a Singleton class: Q) What is a singleton class? A) In simple words, a singleton class is a class which can have only one instance at any point of time throughout the application and provides...

Example of DependsOnMethod in TestNG
public class dependsonM { @Test public void login() { System.out.println("login"); } @Test (dependsOnMethods = {"login"}) public void email() { //Intentionally I am failing this testcase Assert.assertTrue(false);...
S

Sarthak C.

0 0
0

Overloading in JAVA
When a class contains more than one method with the same method name but different argument types, then it is called Overloading. Methods are said to be Overloaded methods. Also, know as Compile time...

Recommended Articles

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 >

Before we start on the importance of learning JavaScript, let’s start with a short introduction on the topic. JavaScript is the most popular programming language in the world, precisely it is the language - for Computers, the Web, Servers, Smart Phone, Laptops, Mobiles, Tablets and more. And if you are a beginner or planning...

Read full article >

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 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 >

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 you