ChinaUnix.net
相关文章推荐:

WARNING orgapachehadoopmetricsjvmEventCounter is deprecated

上面的问题是什么原因?怎样解决?

by zlhgood - BSD - 2007-05-02 23:43:56 阅读(1984) 回复(1)

相关讨论

[出自pear.php.net] Innovating the future: Package.xml 1.0, and PEAR 1.3.6 are officially deprecated If you are using PEAR 1.3.6 or older, you will no longer be able to install or upgrade packages as of January 1, 2008. On this day, the XML-RPC server at pear.php.net will be shut down, to be permanently replaced by the newer, more scalable REST interface that was introduced with PEAR version 1.4.0....

by 一地风飞 - php文档中心 - 2007-02-09 15:02:53 阅读(561) 回复(0)

经过调试发现问题出在JPasswordField PZfieldServerPass;上 如果改成JTextFiled PZfieldServerPass;就没问题了 为什么会这样啊

by beingo - Java - 2004-11-01 19:24:30 阅读(1604) 回复(7)

warning ended. [ 本帖最后由 xubai3000 于 2009-8-12 13:20 编辑 ]

by xubai3000 - IT职业生涯 - 2009-08-12 13:09:36 阅读(1770) 回复(2)

warning: Sharing vectors: pciclass,0c0320 instance 0 and pciex1077,2432 instance 7,有见过的吗? 谢谢。

by djgbl - Solaris - 2009-04-01 11:59:25 阅读(1331) 回复(1)

作无盘,启动报 nfs warning: mount version older than kernel 请问是不是nfs与内核版本不匹配?如何解决?

by st690714 - 服务器架设 - 2006-06-28 14:23:21 阅读(520) 回复(1)

warning: cast does not match function type warning: cast to pointer from integer of different size

by WIIW - 内核/嵌入技术 - 2005-09-09 09:34:16 阅读(840) 回复(0)

[code] #include int main() { char *t = "Hello world!"; printf("%s\n",t); return 0; } # g++ a.c a.c: In function 'int main()': a.c:5: warning: deprecated conversion from string constant to 'char*' [/code] 改为const char *就没有warning, 问题是程序里有上千处类似的地方,有没有哪个编译选项可以不看到这些讨厌的warning 用gcc编译是没有warning

by caijimin - C/C++ - 2011-03-23 18:06:43 阅读(25099) 回复(14)

deprecated Marks the address as a deprecated address.Addresses that are marked as deprecated are not used as source addresses for outbound packets unless either there are no other addresses available on this interface 看字典 deprecated 抗议, 不赞成, 抨击, 反对, 藐视, 轻视 所以实在没有看明白这句话说的什么意思,请熟悉的哥们指点一下

by 在线急等待! - Solaris - 2007-05-08 23:28:37 阅读(1479) 回复(2)

现在是不是不用sysctl kern.polling.enable=1 而是ifconfig_em0=''inet xx netmask xx polling"

by thinkpadnb - BSD - 2007-04-28 12:55:15 阅读(1342) 回复(0)

#include int main() { int count=0; char *str="I love you"; while(*str!=NULL) -----------------------------> warning: comparison between pointer and integer { if(*str==' ') count++; str++; } printf("The total word is %d\n",count); return 0; } 请问如何消除这个warning? 用的是gcc version >gcc -v Reading specs from /usr/local/gcc-2.95.2/lib/gcc-lib/i686-pc-linux-gnu...

by 怪怪虎 - C/C++ - 2008-12-26 23:01:55 阅读(1454) 回复(8)