代码搜索:插值优化
找到约 10,000 项符合「插值优化」的源代码
代码结果 10,000
www.eeworm.com/read/438832/7725418
sh ifs-empty.sh
#!/bin/bash
# 如果$IFS被设置, 但其值为空,
#+ 那么"$*"和"$@"将不会像期望的那样显示位置参数.
mecho () # 打印位置参数.
{
echo "$1,$2,$3";
}
IFS="" # 设置了, 但值为空.
set a b c # 位置参数.
mecho "$*" # abc,,
mecho $*
www.eeworm.com/read/437454/7747726
vb assemblyinfo.vb
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' 程序集的常规信息通过下列
' 属性集控制。更改这些属性值可
' 修改与程序集关联的信息。
' 检查程序集的属性值
www.eeworm.com/read/199270/7871786
vb assemblyinfo.vb
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' 程序集的常规信息通过下列
' 属性集控制。更改这些属性值可
' 修改与程序集关联的信息。
' 检查程序集的属性值
www.eeworm.com/read/199270/7871805
vb assemblyinfo.vb
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' 程序集的常规信息通过下列
' 属性集控制。更改这些属性值可
' 修改与程序集关联的信息。
' 检查程序集的属性值
www.eeworm.com/read/399279/7875895
f90 e_623_02.f90
SUBROUTINE count(n)
INTEGER :: sum=0 !sum的初始值设定不要放在类型定义语句中
DO i=1, 10
sum=sum+i
END DO
n=sum !子程序执行后sum的值没有被忘记
END
PROGRAM main
INTEGER :
www.eeworm.com/read/398619/7933409
vb assemblyinfo.vb
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' 有关程序集的常规信息通过下列属性集
' 控制。更改这些属性值可修改
' 与程序集关联的信息。
' 查看程序集属性的值
www.eeworm.com/read/198320/7940330
c 习题01-建立单链表(1).c
#include "datastru.h"
#include
#include
int count_nohead(LINKLIST *head){
/*不带头结点的单链表:输出单链表元素值并计数*/
int i = 0;
LINKLIST *p;
p = head;
printf("输出单链表元素值 : ");
www.eeworm.com/read/198320/7940351
c 习题03-建立单链表(3).c
#include "datastru.h"
#include
#include
int count_nohead(LINKLIST *head){
/*不带头结点的单链表:输出单链表元素值并计数*/
int i = 0;
LINKLIST *p;
p = head;
printf("输出单链表元素值 : ");
www.eeworm.com/read/198320/7940376
c 习题02-建立单链表(2).c
#include "datastru.h"
#include
#include
int count_head(LINKLIST *head){
/*带头结点的单链表:输出单链表元素值并计数*/
int i = 0;
LINKLIST *p;
p = head->next;
printf("输出单链表元素值 : ")
www.eeworm.com/read/198320/7940381
c 习题04-建立单链表(4).c
#include "datastru.h"
#include
#include
int count_head(LINKLIST *head){
/*带头结点的单链表: 输出单链表元素值并计数*/
int i = 0;
LINKLIST *p;
p = head->next;
printf("输出单链表元素值 : "