CSC/ECE 517 Fall 2011/ch7 7a or: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 7: | Line 7: | ||
==Resources== | ==Resources== | ||
*Need to go through these for information | *Need to go through these for information | ||
**[http://courses.ncsu.edu/csc517//common/lectures/notes/lec20.pdf PDF from class lecture] | |||
**[http://drdobbs.com/java/184405653 A standalone class to tackle the problem (in Java)] | |||
**[http://www.javapractices.com/topic/TopicAction.do?Id=13 Representing money (Java)] | |||
**[http://www.javaranch.com/journal/2003/07/MoneyInJava.html Working with money in Java] | |||
**[http://timeandmoney.sourceforge.net/ Time and Money Java project - doesn't seem to have much documentation, though] | |||
**[http://joda-money.sourceforge.net/ Joda Money class library for Java] | |||
**[http://lemnik.wordpress.com/2011/03/25/bigdecimal-and-your-money/ BigDecimal and Your Money (a criticism of using BigDecimal format)] | |||
**[http://www.opentaps.org/docs/index.php/How_to_Use_Java_BigDecimal:_A_Tutorial Tutorial on using BigDecimal] | |||
**[http://junit.sourceforge.net/doc/testinfected/testing.htm JUnit Test Infected: Programmers Love Writing Tests (has a Money class example] | |||
**[http://www.xencraft.com/resources/multi-currency.html Currency Internationalization (i18n), Multiple Currencies and Foreign Exchange (FX)] -nothing programming-wise, but a good overview of the considerations for currency | |||
**[http://www.di-mare.com/adolfo/p/money.htm Yet Another C++ Money Class ] | |||
**[http://edenti.deis.unibo.it/utils/Java-tips/Currency%20representation.txt Representing currencies (txt document with example and details)] |
Revision as of 00:21, 29 November 2011
Wiki Chapter: CSC/ECE 517 Fall 2011/ch7 7a or
7a. Representing money. Skrien Chapter 6 gives an example of a class that can be used to represent money. But how is it done in real programs? Investigate, and report on the advantages and disadvantages of other approaches vs. Skrien's.
Introduction
Resources
- Need to go through these for information
- PDF from class lecture
- A standalone class to tackle the problem (in Java)
- Representing money (Java)
- Working with money in Java
- Time and Money Java project - doesn't seem to have much documentation, though
- Joda Money class library for Java
- BigDecimal and Your Money (a criticism of using BigDecimal format)
- Tutorial on using BigDecimal
- JUnit Test Infected: Programmers Love Writing Tests (has a Money class example
- Currency Internationalization (i18n), Multiple Currencies and Foreign Exchange (FX) -nothing programming-wise, but a good overview of the considerations for currency
- Yet Another C++ Money Class
- Representing currencies (txt document with example and details)