CSC/ECE 517 Fall 2011/ch7 7a or: Difference between revisions

From Expertiza_Wiki
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]]
**[http://courses.ncsu.edu/csc517//common/lectures/notes/lec20.pdf PDF from class lecture]
[[http://drdobbs.com/java/184405653]]
**[http://drdobbs.com/java/184405653 A standalone class to tackle the problem (in Java)]
[[http://www.javapractices.com/topic/TopicAction.do?Id=13]]
**[http://www.javapractices.com/topic/TopicAction.do?Id=13 Representing money (Java)]
[[http://www.javaranch.com/journal/2003/07/MoneyInJava.html]]
**[http://www.javaranch.com/journal/2003/07/MoneyInJava.html Working with money in Java]
[[http://timeandmoney.sourceforge.net/]]
**[http://timeandmoney.sourceforge.net/ Time and Money Java project - doesn't seem to have much documentation, though]
[[http://joda-money.sourceforge.net/]]
**[http://joda-money.sourceforge.net/ Joda Money class library for Java]
[[http://lemnik.wordpress.com/2011/03/25/bigdecimal-and-your-money/]]
**[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]]
**[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]]
**[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]] -nothing programming-wise, but a good overview of the considerations for currency
**[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]]
**[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]]
**[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