My instructor for "Programing Languages Design & implementation" course asked us to do a homework, and this homework asks that: "can you implement a record as a class ?"
Can I implement a record as a class in programming languages that uses it?
138 Views Asked by FortMax At
1
There are 1 best solutions below
Related Questions in CLASS
- Why is this namespace unable to be found?
- How do I initialise a class within a class
- How to solve compiler error: no matching function for call to 'dmhFS::dmhFS()' in my case?
- Tkinter App - My Toplevel window is not appearing. App is stuck in mainloop
- Grouping HTML elements by their class name
- Troubleshooting object instantiation based on role in PHP app
- Using attributes from instances of array of objects in other classes
- Error NullPointerExeception: When trying to add Value in ArrayList & adapter.notifydatachanged
- How to get class properties or fields using reflection in Kotlin/Native?
- why we got same data type in two versions like "int" and "integer" in php?
- Initializing member class with referenced inputs within parent class constructor
- Have a script work multiple times with the same class
- Encapsulation does not seem to work in dart
- Page reloads on button click while event.preventDefault() is used
- C++ - Unknown type name
Related Questions in RECORDS
- SQL selecting multiple record by different variable
- How to combine rows of record types in PureScript? (Is there any alternative to the Union typeclass in PureScript 0.12.0?)
- Get records for a list of multiple entities on Wikidata
- Open a form on a record with the current month Access
- Get only the records with most recent date to every code
- Optimizing work with an array of records
- MYSQL Select records with closest date
- Pattern matching with a record in Oz
- What is the best approach for the purpose to save the value of the variables and to get them passed between the WinForms?
- F# Search through records with multiple values/inputs
- Is it possible to add records into Ms Access Form, while some fields are locked?
- vb.net update access record with 2 Where clauses
- Merging two records with a common field and increment one field in MySQL & PHP
- DNS Record to Redirect Different Ports to Different Hosts
- How to declare 2D Arrays in Java and Implement them (Procedural Programming)
Related Questions in IMPLEMENTS
- implements directive does not work in 64 bit version
- DART equivalent of multiple inheritance of pure virtual interfaces
- Impl trait method on generic and vec of generic within a struct
- Why can't public access modifier be used only in explicit interface implementation?
- Why do we have implements in dart?
- Creating an Android repository with a github repository
- Java: How to extend a inner class from different file
- Why does compiler say Hash is not implemented when I put a HashMap in my struct?
- Use implementing class name in inherited XML comments from interface
- How does Spring Kafka's @Retryable Annotation Implement Asynchronous Exception Handling?
- Spring Boot doesn't see security dependencies
- Is there a way in Dart to reuse method implementation in multiple Enums?
- How can AbstractList class provide an implementation of the 'Iterator<E>' Interface if it doesnot implements the Interface 'Iterator<E>'?
- Implements, Extends or import a Constants Interface
- How to implement the methods addAll, removeAll, retainAll, toArray(), and toArray(T[]) of the List interface
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Of course you can. If you are referring a record just like a row of record from the database:
Student Record in database:
Student in Struct (Implemented in C)
Student in Class (C has no class, implemented in Java)
If the context of C++, the same thing applies. In C++, you can have struct and classes. Struct cannot have method (functions) in them, but classes can have. Since classes can similarly "group" data together, and on top of that, provide methods. You can definitely implement a struct as a class.