【C++错误处理】VC6中关于bool __cdecl std::isdigit(_E,const class std::locale &)' : expects 2 arguments...

作者:gnuhpc
出处:
http://www.cnblogs.com/gnuhpc/

今天在用VC6调试一个别人写的示例程序时,发现了这么一个错误:

 

bool __cdecl std::isdigit(_E,const class std::locale &)' : expects 2 arguments

 

出错的代码:

         

[cpp] view plaincopy

1.  return std::isdigit(_expr[_pos]) != 0; 

2.          bool (isdigit)(_E _C, const locale& _L) 

3.   

4.  while (_pos < _expr.length() && std::isdigit(_expr[_pos]) != 0) 

  

 

MSDN isdigit的定义如下:
template<class E>;
    bool isdigit(E c, const locale& loc) const;    

The template function returns use_facet< ctype<E>; >;(loc). is(ctype<E>;:: digit, c).

 

没有怎么看懂为什么MS把这么简单的一个函数定义的如此复杂...

 

后来看一个老外的解决方法:

you are using the std template version is isdigit which apparently requires two parameters. remove the std:: namespace and the compiler will use the standard C version that only requires one parmeter.

 

自然就解决了VC6标准模板和标准C之间的差别问题。

作者:gnuhpc
出处:
http://www.cnblogs.com/gnuhpc/

 

在Fortran中调用C++函数需要使用Fortran/C混合编程的方式。具体步骤如下: 1. 在C++中定义函数bool my_cpp_read(const std::string &amp;fullName),并使用extern &quot;C&quot;修饰符将其声明为C函数。例如: ``` extern &quot;C&quot; bool my_cpp_read(const std::string &amp;fullName) { // C++函数的实现 // ... } ``` 2. 在Fortran程序中使用bind(C)修饰符声明Fortran接口函数,并使用ISO_C_BINDING模块中的C_CHAR类型表示C++中的const char*类型。同时,使用LOGICAL(KIND=C_BOOL)类型表示C++中的bool类型。例如: ``` USE ISO_C_BINDING INTERFACE FUNCTION my_cpp_read(fullName) BIND(C, NAME=&#39;my_cpp_read&#39;) USE, INTRINSIC :: ISO_C_BINDING IMPLICIT NONE CHARACTER(KIND=C_CHAR), DIMENSION(*), INTENT(IN) :: fullName LOGICAL(KIND=C_BOOL) :: my_cpp_read END FUNCTION my_cpp_read END INTERFACE ``` 3. 在Fortran程序中调用C++函数my_cpp_read。在调用时,需要将Fortran中的字符串转换为C++中的std::string类型,并将C++中的bool类型转换为Fortran中的LOGICAL(KIND=C_BOOL)类型。例如: ``` PROGRAM main USE ISO_C_BINDING IMPLICIT NONE CHARACTER(KIND=C_CHAR), PARAMETER :: file_name_c = &quot;test.txt&quot; CHARACTER(LEN=LEN(file_name_c)) :: file_name LOGICAL(KIND=C_BOOL) :: read_success file_name = TRANSFER(file_name_c, file_name) read_success = my_cpp_read(file_name) IF (read_success) THEN PRINT *, &quot;Read file successfully&quot; ELSE PRINT *, &quot;Failed to read file&quot; END IF END PROGRAM main ``` 以上是Fortran调用C++函数的一般步骤,具体实现可能需要根据实际情况进行修改和调整。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值