subroutine和function的区别 pb

 我来答
欧兰中国
2017-04-28 · TA获得超过8838个赞
知道大有可为答主
回答量:4749
采纳率:37%
帮助的人:465万
展开全部
以下内容是自己翻译的,如有问题请留言。

Functions are simpler than subroutines. A function can only return one variable, and can be invoked from within a write statement, inside an if declaration if (function) then, etc. A subroutine handles many variables and can only be used as a stand-alone command.

函数要比子程序简单。
函数只能返回一个变量,但是可以从写入语句中被调用;在if声明中有if (function) then,等等。
子程序处理多变量问题,可以用作单独命令。

Function自定义函数

In Fortran one can use a function to return a value or an array of values. The following program calls a function to compute the sum of the square and the cube of an integer.
在fortran中,可以使用一个函数来返回一个值或者一个数组的值。
下面程序调用了函数来计算一个整数的平方与立方的和。

function func(i) result(j)
integer, intent(in) :: i ! input
integer :: j ! output
j = i**2 + i**3
end function func

program xfunc
implicit none
integer :: i,func
i = 3
print*,"sum of the square and cube of",i," is",func(i)
end program xfunc 读美文

Subroutine 子程序

A subroutine can be used to return several values through its arguments. It is invoked with a call statement. Here is an example.
子程序可以通过变元[自变量]来返回多个值,他由call语句来调用。下面是一个例子:
subroutine square_cube(i,isquare,icube)
integer, intent(in) :: i ! input
integer, intent(out) :: isquare,icube ! output
isquare = i**2
icube = i**3
end subroutine square_cube

program xx
implicit none
integer :: i,isq,icub
i = 4
call square_cube(i,isq,icub)
print*,"i,i^2,i^3=",i,isq,icub
end program xx

Fortran中函数和subroutine中的实元和哑元之间是通过地址传递数据的,这与c/c++中的传值是不同的,也就是说,函数或subroutine中的哑元值发生了变化也就意味着调用的实元发生了变化,因此函数或subroutine调用过后,实元的值已经是计算过的新值了。

当然这样做也是有前提的,即在函数或subroutine中没有指定哑元的intend(in)属性。关于intend属性请参见有关书籍。
sh...3@163.com
2017-04-28 · 超过215用户采纳过TA的回答
知道小有建树答主
回答量:393
采纳率:0%
帮助的人:262万
展开全部
PB内置Oracle数据库接口的使用方法2008-12-23 13:34PowerBuilder(PB)和Oracle分别是前端开发工具和RDBMS的主流产品。PB提供了两种与Oracle连接的接口:PowerSoft内置的数据库接口(Native Database Interface)和ODBC接口。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式