标题:高手来解决,谢谢
只看楼主
sjs2005
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2005-7-27
 问题点数:0 回复次数:1 
高手来解决,谢谢

各位高手,我在编程中遇到一个问题,解决不了,请各位大虾指点一二: struct ecef { double x,y,z; }pos1,pos3;

struct llh { double lat,lon,hae; }pos2,pos4;

ecef llh_to_ecef(struct llh pos) { 有关函数的计算 }

llh ecef_to_llh(struct ecef pos) { 有关函数的计算 } 上述程序均在主程序外面,在编译的过程中,系统总是说函数声明错误,不知为什么?

搜索更多相关主题的帖子: double 主程序 
2005-07-27 21:11
seeker
Rank: 1
等 级:新手上路
帖 子:172
专家分:0
注 册:2005-6-5
得分:0 
以下是引用sjs2005在2005-7-27 21:11:55的发言:

各位高手,我在编程中遇到一个问题,解决不了,请各位大虾指点一二: struct ecef { double x,y,z; }pos1,pos3;

struct llh { double lat,lon,hae; }pos2,pos4;

ecef llh_to_ecef(struct llh pos) { 有关函数的计算 }

llh ecef_to_llh(struct ecef pos) { 有关函数的计算 } 上述程序均在主程序外面,在编译的过程中,系统总是说函数声明错误,不知为什么?

红色的2个类型你没定义!!还有要注意返回类型,改成如下试试看: struct ecef { double x,y,z; }ecef,pos1,pos3;

struct llh { double lat,lon,hae; }llh,pos2,pos4;

ecef llh_to_ecef(struct llh pos) { 有关函数的计算 }

llh ecef_to_llh(struct ecef pos) { 有关函数的计算 }


我相信总有一片天空属于我!http://myseeker. E-Mail:lwqcny@
2005-07-27 23:21



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-23810-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.157120 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved