程序一:交换值 #include void swap(int *x , int *y){ int *temp; temp x; x y; y temp; } void main(){ int a 1; int b 2; swap(&a , &b); } 对于程序一,在它运行完成之后,a,b的值并没有发生变化。 原因是swap函数里面的x,y都…
首先确保Elasticsearch6.3.2安装成功
1.出现NoNodeAvailableException[None of the configured nodes are available
解决:elasticsearch6.3.2的配置文件修改如下:
network.host: 192.168.3.222 #改成自己局域网ip transport.tcp.port: 9300 #springb…