代码搜索:Capacity
找到约 2,190 项符合「Capacity」的源代码
代码结果 2,190
www.eeworm.com/read/388617/8594931
cpp str2.cpp
// str2.cpp -- capacity() and reserve()
#include
#include
int main()
{
using namespace std;
string empty;
string small = "bit";
string larger = "Elephants a
www.eeworm.com/read/388617/8596076
cpp str2.cpp
// str2.cpp -- capacity() and reserve()
#include
#include
int main()
{
using namespace std;
string empty;
string small = "bit";
string larger = "Elephants a
www.eeworm.com/read/431631/8664412
m ip_08_03.m
% MATLAB script for Illustrative Problem 8.3.
echo on
a_db=[-20:0.2:20];
a=10.^(a_db/10);
for i=1:201
f(i)=quad('il3_8fun',a(i)-5,a(i)+5,1e-3,[],a(i));
g(i)=quad('il3_8fun',-a(i)-5,-a(i)+5,1
www.eeworm.com/read/287843/8665549
m ip_08_03.m
% MATLAB script for Illustrative Problem 8.3.
clear
echo on
a_db=[-20:0.2:20];
a=10.^(a_db/10);
for i=1:201
f(i)=quad('il3_8fun',a(i)-5,a(i)+5,1e-3,[],a(i));
g(i)=quad('il3_8fun',-a(i)-5,-a
www.eeworm.com/read/386607/8735781
java semaphoreboundedbuffer.java
package net.jcip.examples;
import java.util.concurrent.*;
import net.jcip.annotations.*;
/**
* BoundedBuffer
*
* Bounded buffer using \Semaphore
*
* @author Brian Goetz and Tim Peierls
*
www.eeworm.com/read/386582/8737431
c array.c
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* Yo
www.eeworm.com/read/386582/8737454
c buffer.c
/*
* Copyright (C) 2007 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* Yo
www.eeworm.com/read/385935/8776199
java str25.java
///输出字符串的容量capacity
///输出字符串的长度length
public class str25
{
public static void main(String[] args)
{
StringBuffer sb=new StringBuffer(40);
System.out.println(sb.capacity(
www.eeworm.com/read/385935/8776239
java str23.java
///输出字符串的容量capacity
///输出字符串的长度length
public class str23
{
public static void main(String[] args)
{
StringBuffer sb1=new StringBuffer();
System.out.println(sb1.capacity(
www.eeworm.com/read/385935/8776291
java str24.java
///输出字符串的容量capacity
///输出字符串的长度length
public class str24
{
public static void main(String[] args)
{
StringBuffer sb1=new StringBuffer(100);
System.out.println(sb1.capaci