| Author |
function points
|
sameera liyanage
Ranch Hand
Joined: Nov 25, 2008
Posts: 689
|
|
what are the function poits?
how they usefull in software developing?
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32830
|
|
|
Have you tried Googling? I had never heard of function points before.
|
 |
Henry Wong
author
Sheriff
Joined: Sep 28, 2004
Posts: 16810
|
|
Maybe the OP meant "function pointers"? ... which is common in the C language.
Henry
|
Books: Java Threads, 3rd Edition, Jini in a Nutshell, and Java Gems (contributor)
|
 |
Henry Wong
author
Sheriff
Joined: Sep 28, 2004
Posts: 16810
|
|
In Java, passing around functions are not really allowed... as functions (aka methods) are part of instances. But you can kinda simulate that...
To call a function, you would need an instance and the name of the method -- so, I guess you can create a class that contain those two as a pair. And to actually call it, you can use the reflection lib to get the Method object, and call invoke() with the instance.
Henry
|
 |
Steve Fahlbusch
Ranch Hand
Joined: Sep 18, 2000
Posts: 496
|
|
I believe that OP is talking about Function Point Analysis : see link http://www.devdaily.com/FunctionPoints/
Note: this is not a java topic - moderator may consider relocating.
|
 |
sameera liyanage
Ranch Hand
Joined: Nov 25, 2008
Posts: 689
|
|
thanks Steve Fahlbusch .
i am also lokking what you supply
|
 |
 |
|
|
subject: function points
|
|
|