| 查看: 431 | 回复: 1 | ||
chenshuai000金虫 (正式写手)
|
[求助]
fortran 求助 已有1人参与
|
|
module shiliang implicit none type vector real*8 v(4) endtype end module type(vector) ::W1,W2 我想实现直接W1=W2,即实现两个结构体变量之间的直接赋值操作,请问这个赋值号超载该怎么写?谢谢 发自小木虫Android客户端 |
» 猜你喜欢
材料化工340求调剂
已经有4人回复
一志愿厦门大学材料工程专硕354找调剂!!!
已经有6人回复
271求调剂
已经有20人回复
一志愿085600中科院宁波所276分求调剂
已经有24人回复
一志愿北交大材料工程总分358
已经有4人回复
0856材料与化工调剂,339
已经有11人回复
一志愿郑大材料工程290求调剂
已经有19人回复
266分,一志愿电气工程,本科材料,求材料专业调剂
已经有9人回复
372分材料与化工(085600)一志愿湖南大学求调剂
已经有3人回复
一志愿南师大0703化学 275求调剂
已经有6人回复
【答案】应助回帖
感谢参与,应助指数 +1
|
[code] module m_test implicit none private public :: t_test type t_test real(8) :: v(4) contains procedure :: assign generic :: assignment(=) => assign end type t_test contains subroutine assign(lhs, rhs) implicit none class(t_test), intent(inout) :: lhs class(t_test), intent(in) :: rhs lhs%v = rhs%v return end subroutine assign end module m_test program test use m_test implicit none type(t_test) :: a, b a%v = 4 a%v(2) = 2 b = a write(*, *) b%v(2) end program test [\code] |

2楼2016-01-21 19:18:17














回复此楼