给定两个以字符串形式表示的非负整数 num1 和 num2,返回 num1 和 num2 的乘积,它们的乘积也表示为字符串形式。 示例 1: 输入: num1 = "2", num2 = "3"输出: "6"示例 2: 输入: num1 = "123", num2 = "456"输出: "56088 ...
分类:
其他好文 时间:
2021-06-20 17:54:31
阅读次数:
0
1.== 1.1 如果是比较基本数据类型,比较值; 1.2 如果比较引用数据类型,比较地址。 2.equals 2.1 比较引用类型,equals(object); 2.2 如果没有重写equals方法,就是默认的==,如果重写根据重写方法判断。 ...
分类:
其他好文 时间:
2021-06-20 17:51:40
阅读次数:
0
基于BIM ifc的施工模拟扩展测试日志 IfcPropertySet1.getName(); if (indexStr1=="体积"){ P7_Value = indexStr2;} "LoadBearing" "true" "IsExternal" "false" "Slope" "0" "Re ...
分类:
其他好文 时间:
2021-06-19 19:28:03
阅读次数:
0
模版自定义函数 simple_filter: 1、最多两个参数,方式{{第一个参数|函数名:"第二个参数"}} 2、可以做判断条件 simple_tag:(常用) 1、无限制的传参数 {% 函数名 参数 参数 参数 %} 创建模板自定义函数的步骤 1、在app中创建一个 templatetags 的 ...
分类:
其他好文 时间:
2021-06-19 19:27:42
阅读次数:
0
BOOL IsFolderEmpty(string path) { string str = path + "\\*.*"; CFileFind ff; BOOL bFound; bFound = ff.FindFile(str.c_str()); while (bFound) { bFound = ...
分类:
编程语言 时间:
2021-06-19 18:41:36
阅读次数:
0
1 #显示跑马灯文字 2 import os 3 import time 4 def main(): 5 content = str(input('输入显示内容:')) 6 while True: 7 os.system('cls') 8 print(content) 9 time.sleep(0. ...
分类:
其他好文 时间:
2021-06-18 19:20:19
阅读次数:
0
1.选择产品界面 frmSelectLaserFile->strLaserFileName = strSystemLaserFileName; //frmSelectLaserFile->jczCard = jczCard; frmSelectLaserFile->ShowModal(); // i ...
分类:
其他好文 时间:
2021-06-17 16:32:56
阅读次数:
0
public interface StudentService { public void add(String studentName); } 定义一个spring的FactoryBean,FactoryBean在通过spring实例化生成的不是自己本身,而是通过调用的getObject方法返回的 ...
分类:
编程语言 时间:
2021-06-17 16:26:25
阅读次数:
0
test server(bios/bmc/system) review test plan... debug bios(itp, serial log, spec:uefi, pcie, acpi, smbios...) windows(windbg, adk, sysinternals, batc ...
分类:
其他好文 时间:
2021-06-16 17:33:30
阅读次数:
0
测试类: //测试工厂bean 单多实例 @Test public void test01(){ ApplicationContext context=new ClassPathXmlApplicationContext("503bean5.xml"); MyBean myBean1 = conte ...
分类:
其他好文 时间:
2021-06-15 18:27:08
阅读次数:
0