Tupledesc is the schema of tuple, for example, for the table student
id(int) name(string) sex(string)
1 xxx m
2 yyy f
Then (1, XXX, m) code> is a tuple, and tupledesc is
(ID (int) name (string) sex (string)) code>.
Estimated time: 2 hours
Difficulty: easy
Key and difficult points
1. Make clear the data structure of tuple and tupledesc, and implement them with ArrayList
2. Java programming language details
(a) Fast processing of get and set methods
(b) Automatic production of idea with equals and hashcode methods
(c) Some pits in ArrayList
3. Run through all unit tests.
Read More:
- Simple Python crawler exercise: News crawling on sohu.com
- CSAPP Experiment 3: attack Lab
- CSAPP 3e Attack Lab
- SystemError: new style getargs format but argument is not a tuple
- List indexes must be integers or slices, not tuple solution
- python-TypeError: list indices must be integers, not tuple Solution
- Implementation of screen cleaning in Python idle
- Implementation of multithread sequential alternate execution by using lock in Java
- Implementation of HTTPS file server based on nginx in win2012
- Generating equals/hashCode implementation but without a call to superclass
- Implementation of Python switch / case statements
- Uncaught error: call to undefined function MySQL when building sqli lab environment with phpstudy_ Connect() error
- ?: (staticfiles.E001) The STATICFILES_DIRS setting is not a tuple or list.
- Python switch / case statement implementation method
- Why do we not need to write implementation classes in mybatis to get the objects we need
- 43. Implementation of the shortest code of multiply strings | Java
- Implementation of OpenGL rotating cube
- Cocos creator 2.4.5 2D RPG (Infinite scrolling background implementation)
- Several implementation methods of Python timing task
- Square root of X (implementation of binary search)