- 积分
- 66
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-9-2
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
type T_client_server_message
union
map
character*(500) buffer
end map
map
real,allocatable :: matrix1(:,:)
real,allocatable :: matrix2(:,:)
real,allocatable :: matrix3(:,:)
end map
end union
end type
想如此定义一个新的数据类型
但是出现错误
错误 3 error #7897: A UNION may not contain an ALLOCATABLE component [MATRIX3] C:\Users\Administrator\Desktop\add server.f90 25
错误 2 error #7897: A UNION may not contain an ALLOCATABLE component [MATRIX2] C:\Users\Administrator\Desktop\add server.f90 24
错误 1 error #7897: A UNION may not contain an ALLOCATABLE component [MATRIX1] C:\Users\Administrator\Desktop\add server.f90 23
要怎么解决啊?求大神帮忙····
|
|