aspose file tools
The moose likes Other Languages and the fly likes function points Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Languages » Other Languages
Reply Bookmark "function points" Watch "function points" New topic
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
    
    4
Have you tried Googling? I had never heard of function points before.
Henry Wong
author
Sheriff

Joined: Sep 28, 2004
Posts: 16810
    
  19


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
    
  19


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
    
    2

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
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: function points
 
Similar Threads
Functions of fire wall
XSLT: How to show the Tag NAME?
How do i call my function in JSP
WA #1.....word association
Dynamically set the xsl:value-of select through a xsl:variable