21 必须返回对象时,别妄想返回其 reference

条款-21 必须返回对象时,别妄想返回其 reference

Remember:

1-绝不要返回 pointer 或 reference 指向一个 local stack 对象,或返回 reference 指向一个 heap-allocated 对象,或返回 pointer 或 reference 指向一个 local static 对象而有可能同时需要多个这样的对象。

​ 条款-4 已经为 “在单线程环境中合理返回 reference 指向一个 local static ” 对象提供了一份设计实例。

很好,我可以帮你编写一个简单的Python脚本来实现山海经跑图。 首先你需要导入两个Python库:PIL和pytesseract。PIL库用于图像处理,pytesseract库用于OCR识别文字。 接下来,你需要从图片中提取出文字。你可以使用PIL库中的Image模块打开图片,然后使用pytesseract库中的image_to_string函数将图片中的文字转换为字符串。 然后,你需要将山海经中的地名和路线提取出来。你可以使用Python的正则表达式来匹配这些字符串,并将它们保存到一个列表中。 最后,你可以使用Python的Web自动化库(如selenium)来模拟人工操作,让程序自动跑图。 以下是一个简单的Python脚本,用于提取山海经中的地名和路线,并自动跑图: ```python from PIL import Image import pytesseract import re from selenium import webdriver import time # 打开图片 img = Image.open('shanhaijing.jpg') # OCR识别图片中的文字 text = pytesseract.image_to_string(img, lang='chi_sim') # 提取地名和路线 place_pattern = re.compile(r'【(.*?)】') # 地名正则表达式 route_pattern = re.compile(r'→(.*?)\n') # 路线正则表达式 places = place_pattern.findall(text) routes = route_pattern.findall(text) # 打印地名和路线 for i in range(len(places)): print(f'{i + 1}、{places[i]}:{routes[i]}') # 自动跑图 driver = webdriver.Chrome() driver.get('https://shanhaimap.mihoyo.com/') # 点击开始游戏按钮 start_game_btn = driver.find_element_by_class_name('start-game') start_game_btn.click() # 等待动画播放完成 time.sleep(5) # 点击跑图按钮 run_btn = driver.find_element_by_class_name('run-btn') run_btn.click() # 依次点击地名和路线 for i in range(len(places)): time.sleep(1) place_btn = driver.find_element_by_xpath(f"//*[text()='{places[i]}']") place_btn.click() time.sleep(1) route_btn = driver.find_element_by_xpath(f"//*[text()='{routes[i]}']") route_btn.click() ``` 请注意,这只是一个简单的脚本,可能需要根据你的具体情况进行修改。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值