struct edge{ int from,to,w; edge(int a,int b,int c){from=a;to=b;w=c;} }; 在竞赛书上看到的,请问第三行edge(int a,int b,int c){from=a;to=b;w=c;}是啥意思啊