摘要:
环境搭建: 一、Selenium安装 pip install selenium 可使用以下命令查看是否安装成功: pip show selenium 二、谷歌浏览器安装 如果能打开官网下载最好:https://www.google.cn/chrome/ 如果不能,推荐一个网址:https://liu 阅读全文
摘要:
转自:https://www.cnblogs.com/luoxn28/p/5686794.html 要想理解反射的原理,首先要了解什么是类型信息。Java让我们在运行时识别对象和类的信息,主要有2种方式:一种是传统的RTTI,它假定我们在编译时已经知道了所有的类型信息;另一种是反射机制,它允许我们在 阅读全文
摘要:
itar 生成array for代码块 for (int i = 0; i < array.length; i++) { = array[i]; } itco 生成Collection迭代 for (Iterator<String> iterator = locationUrl.iterator() 阅读全文