摘要:
resourceRelationInfo.xml 该xml的作用:我们在程序运行的时候,需要把需要的资源先加载进来。加载资源的方法,写在LocalMessageManager中, 资源文件的位置如下图: 资源文件的样子: ResourceManager类[元数据] GetString(string 阅读全文
摘要:
def formatResultString(*echoInfo): joinString=',' ResultString = joinString.join(echoInfo[0]) return ResultString x=['lala','oka','woca','end'] print formatResultString(x) #结果:lala,oka,w... 阅读全文