首先确定自己的机器跟对方的机器是同一个网段,然后对方的机器要配置一个web服务器,但是不能用80端口,因为是禁止非正式场合使用80端口做web服务的,只要你自己的机器能在浏览器上输入对方的ip加端口访问那个文件,那你的php代码也能打开它的这个文件,否则不行
错误输出如下信息NO!
Warning: scandir() [function.scandir]: remote host file access not supported, file://192.168.1.2/Pictures/Photo/big/ in D:\www\web\viewpictures.php on line 4
Warning: scandir(file://192.168.1.2/Pictures/Photo/big/) [function.scandir]: failed to open dir: no suitable wrapper could be found in D:\www\web\viewpictures.php on line 4
Warning: scandir() [function.scandir]: (errno 2): No such file or directory in D:\www\web\viewpictures.php on line 4
这样写看看
Ploy::Ploy(const Ploy &rhs)
{
//*this = rhs
init()
PloyNode * temp = rhs.head
while (temp -> next != NULL)
{
(*this).inserthelp(temp -> next -> coef, temp -> next -> expn)
temp = temp -> next
}
}
另外bool Ploy::inserthelp(const double & c, const signed & e)函数中
在说明处加上一条语句
if (fence -> next == NULL)
{
tail -> next = new PloyNode(c, e, tail -> next)
tail = tail ->next//<------------------------加上它
return true
}
else
在main()中test2.printall()后面加上cout<<endl为了另起一行。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)