代码搜索:Switch
找到约 10,000 项符合「Switch」的源代码
代码结果 10,000
www.eeworm.com/read/263516/11359472
m subsref.m
function b = subsref(a,index)
switch index(1).type
case '.'
switch index(1).subs
case 'con'
if length(index) == 2
b = a.con(index(2).subs{:});
else
b = a.con;
www.eeworm.com/read/263516/11359522
m subsref.m
function b = subsref(a,index)
switch index(1).type
case '.'
switch index(1).subs
case 'con'
if length(index) == 2
b = a.con(index(2).subs{:});
else
b = a.con;
www.eeworm.com/read/263516/11359526
m subsasgn.m
function a = subsasgn(a,index,val)
switch index(1).type
case '.'
switch index(1).subs
case 'con'
if length(index) == 2
a.con(index(2).subs{:}) = val;
else
a.con = v
www.eeworm.com/read/263516/11359582
m subsref.m
function b = subsref(a,index)
switch index(1).type
case '.'
switch index(1).subs
case 'con'
if length(index) == 2
b = a.con(index(2).subs{:});
else
b = a.con;
www.eeworm.com/read/263516/11359653
m subsref.m
function b = subsref(a,index)
switch index(1).type
case '.'
switch index(1).subs
case 'con'
if length(index) == 2
b = a.con(index(2).subs{:});
else
b = a.con;
www.eeworm.com/read/263516/11359716
m subsref.m
function b = subsref(a,index)
switch index(1).type
case '.'
switch index(1).subs
case 'con'
if length(index) == 2
b = a.con(index(2).subs{:});
else
b = a.con;
www.eeworm.com/read/263516/11359717
m subsasgn.m
function a = subsasgn(a,index,val)
switch index(1).type
case '.'
switch index(1).subs
case 'con'
if length(index) == 2
a.con(index(2).subs{:}) = val;
else
a.con = v
www.eeworm.com/read/408584/11380219
c sctp_displayevents.c
#include "unp.h"
void
print_notification(char *notify_buf)
{
union sctp_notification *snp;
struct sctp_assoc_change *sac;
struct sctp_paddr_change *spc;
struct sctp_remote_error *sre;
struct sct
www.eeworm.com/read/262944/11384011
c inputnumber.c
//*************************************************************************************************
//* *
//* ******************************数字处理程序************************
www.eeworm.com/read/262894/11386502
js scripts.js
function getTime() {
var t = new Date();
var hour = t.getHours();
var minute = t.getMinutes();
if (minute < 10) {
minute = "0" + minute;
}
return hour + ":" + minute;
}
function get