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?
134 Views Asked by FortMax At
1
There are 1 best solutions below
Related Questions in CLASS
- Access objects variable & method by name
- Pass variables to extended class
- Threading Segfault when reading members
- __PHP_Incomplete_Class Object even though class is included before session started
- How to declare a class with a constructior outside of a function C++
- ClassCastException: datastructures.instances.JClass cannot be cast to java.util.ArrayList
- Java: set and get methods for strings
- Allow extension of class by injection of user-made subclass, while preserving accessibility
- Efficiency penalty of initializing a struct/class within a loop
- Possible to add a new class that can be cast to an existing final class?
- introduce c++ into html
- how can Object class in ruby be an instance of it's subclass, class "Class"
- Class enumerator values cannot be passed as parameters to another class's function
- Passive Objects in C++
- open class or implicit class in java
Related Questions in RECORDS
- SQLite combine values of similar records into one
- OCAML the record field is not mutable
- Crystal reports filter out data on condition
- Records with Z3
- Haskell: is there a way of 'mapping' over an algebraic data type?
- How to prime multiple blank records and then add data to them
- Can I implement a record as a class in programming languages that uses it?
- Libre Office Base: Unable to change or save records in form
- AWK NR lookup with variable gives extra output
- C: Reading a text file into a struct array
- Excel Error: Removed Records: Sorting from /xl/worksheets/sheet10.xml part
- Want to calculate records per page for pagination
- How to use the log in details from one form in another?
- Writing a file to a struct array
- Unknown job delete records on table sql server
Related Questions in IMPLEMENTS
- Generic Interface missing implementation
- method does not override or implement a method from a supertype: How can make override work?
- java how can I overcome multiple inheritance and diamond problam
- Golang inferred interfaces
- same method signature in interface and class
- My class implements interface with methods. which arent implemented but no errors
- Declare interface and Implement the interface using multi-inheritance in C++
- Can I implement a record as a class in programming languages that uses it?
- Extend AND implement in the same class
- Implement Serializable to a class implementing an Interface
- Find out implementation type of input interface
- Android - Easier/Faster/Less tedious way to implement Parcelable?
- What's different from the two ways with an interface?
- Arraylist can't add element
- Member variable which must extend class A and implement some 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 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.