代码搜索:直驱式

找到约 10,000 项符合「直驱式」的源代码

代码结果 10,000
www.eeworm.com/read/181854/9234027

txt 显式转换类型.txt

示列代码一: byte dest; short sour=7; dest=(byte)sour;
www.eeworm.com/read/169583/9849739

m 多项式显示.m

a=round(10*rand(2,5)) poly2sym(a)
www.eeworm.com/read/169583/9849741

m 多项式展开.m

syms x y; expand((x+y)^3)
www.eeworm.com/read/169583/9849743

m 交互式标注.m

x=1:0.1*pi:2*pi; y=sin(x); plot(x,y); gtext('y=sin(x)','FontSize',12)
www.eeworm.com/read/166298/10024837

txt 四元式表.txt

1:(=, 100, , b) 2:(+, 1, 3, T1) 3:(*, 2, T1, T2) 4:(=, T2, , a) 5:(j>, b, 10, 7) 6:(j, , , 9) 7:(=, 1, , a) 8:(j, , , 14) 9:(j>=, b, 5, 11) 10:(j, , , 13) 11:(=, 2, , a) 12:(j, , , 14) 1
www.eeworm.com/read/164975/10079905

txt 隐式数值转换.txt

using System; class Test { public static void Main() { byte x=16; Console.WriteLine("x={0}",x); ushort y=x; Console.WriteLine("y={0}",y); y=65535; Console.WriteLi
www.eeworm.com/read/164975/10079907

txt 隐式枚举转换.txt

using System; enum Weekday{ Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday }; class Test { public static void Main(){ Weekday day; day=0; Console.WriteLine(day);
www.eeworm.com/read/164975/10079912

txt 显式数值转换.txt

using System; class Test { static void Main() { long longValue=Int64.MaxValue; int intValue=(int)longValue; Console.WriteLine("(int){0}={1}",longValue,intValue); } } 结果