当前位置: 代码迷 >> C语言 >> 高手来解决,谢谢
  详细解决方案

高手来解决,谢谢

热度:157   发布时间:2005-07-27 21:11:00.0
高手来解决,谢谢

各位高手,我在编程中遇到一个问题,解决不了,请各位大虾指点一二: 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) { 有关函数的计算 } 上述程序均在主程序外面,在编译的过程中,系统总是说函数声明错误,不知为什么?


----------------解决方案--------------------------------------------------------
以下是引用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) { 有关函数的计算 }


----------------解决方案--------------------------------------------------------
  相关解决方案