LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1471|回复: 3

C语言也支持函数重载?

[复制链接]
发表于 2005-6-22 09:39:48 | 显示全部楼层 |阅读模式
我在fcntl的man手册上看到它的原型有三个:
  1. #include <unistd.h>
  2.        #include <fcntl.h>
  3.                                                                                 
  4.        int fcntl(int fd, int cmd);
  5.        int fcntl(int fd, int cmd, long arg);
  6.        int fcntl(int fd, int cmd, struct flock *lock);
复制代码

C语言也支持函数重载?
 楼主| 发表于 2005-6-22 09:43:17 | 显示全部楼层
我用如下程序测试,却没有通过
  1. #include <stdio.h>

  2. void hello(void)
  3. {
  4.     printf("hello\n");
  5. }

  6. void hello(const char *name)
  7. {
  8.     printf("hello %s\n", name);
  9. }

  10. int main(void)
  11. {
  12.     hello();
  13.     hello("tintin");
  14.     return 0;
  15. }
复制代码
回复 支持 反对

使用道具 举报

发表于 2005-6-22 10:49:07 | 显示全部楼层
这不是函数重载,fcntl的原型实际上只有一种:
int fcntl(int fd, int cmd, ...);
第三个参数是可变的。看看fcntl.h就明白了。
回复 支持 反对

使用道具 举报

 楼主| 发表于 2005-6-22 11:18:36 | 显示全部楼层
哦,明白了。谢谢。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表