码迷,mamicode.com
首页 >  
搜索关键字:als    ( 12962个结果
43. 字符串相乘
给定两个以字符串形式表示的非负整数 num1 和 num2,返回 num1 和 num2 的乘积,它们的乘积也表示为字符串形式。 示例 1: 输入: num1 = "2", num2 = "3"输出: "6"示例 2: 输入: num1 = "123", num2 = "456"输出: "56088 ...
分类:其他好文   时间:2021-06-20 17:54:31    阅读次数:0
equals和==区别
1.== 1.1 如果是比较基本数据类型,比较值; 1.2 如果比较引用数据类型,比较地址。 2.equals 2.1 比较引用类型,equals(object); 2.2 如果没有重写equals方法,就是默认的==,如果重写根据重写方法判断。 ...
分类:其他好文   时间:2021-06-20 17:51:40    阅读次数:0
基于BIM ifc的施工模拟扩展测试日志
基于BIM ifc的施工模拟扩展测试日志 IfcPropertySet1.getName(); if (indexStr1=="体积"){ P7_Value = indexStr2;} "LoadBearing" "true" "IsExternal" "false" "Slope" "0" "Re ...
分类:其他好文   时间:2021-06-19 19:28:03    阅读次数:0
django 模板自定义函数 simple_filter simple_tag
模版自定义函数 simple_filter: 1、最多两个参数,方式{{第一个参数|函数名:"第二个参数"}} 2、可以做判断条件 simple_tag:(常用) 1、无限制的传参数 {% 函数名 参数 参数 参数 %} 创建模板自定义函数的步骤 1、在app中创建一个 templatetags 的 ...
分类:其他好文   时间:2021-06-19 19:27:42    阅读次数:0
mfc判断目录是否为空
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
Pyton 练习题2
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
有关公共动态库的常用函数调用2
1.选择产品界面 frmSelectLaserFile->strLaserFileName = strSystemLaserFileName; //frmSelectLaserFile->jczCard = jczCard; frmSelectLaserFile->ShowModal(); // i ...
分类:其他好文   时间:2021-06-17 16:32:56    阅读次数:0
接口动态代理IOC注入到spring容器中
public interface StudentService { public void add(String studentName); } 定义一个spring的FactoryBean,FactoryBean在通过spring实例化生成的不是自己本身,而是通过调用的getObject方法返回的 ...
分类:编程语言   时间:2021-06-17 16:26:25    阅读次数:0
review
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
3.工厂bean
测试类: //测试工厂bean 单多实例 @Test public void test01(){ ApplicationContext context=new ClassPathXmlApplicationContext("503bean5.xml"); MyBean myBean1 = conte ...
分类:其他好文   时间:2021-06-15 18:27:08    阅读次数:0
12962条   上一页 1 2 3 4 5 6 ... 1297 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!