About 68,300 results
Open links in new tab
  1. STRING: functional protein association networks

    STRING is a database of known and predicted protein-protein interactions and a functional enrichment tool.

  2. C++ 标准库 <string> - 菜鸟教程

    <string> 是 C++ 标准库中用于处理字符串的头文件。 在 C++ 中,字符串是由字符组成的序列。 <string> 头文件提供了 std::string 类,它是对 C 风格字符串的封装,提供了更安全、更易用的字符串操作功 …

  3. C++中的String的常用函数用法总结_string函数-CSDN博客

    本文详细介绍了C++中string的常用接口。 涵盖构造函数、大小容量、字符串比较、插入、拼接、遍历、删除、字符替换、大小写转换、查找、排序以及分割/截取字符串等操作,并给出了部分操作的实现 …

  4. string(C++,java,VB等编程语言中的字符串)_百度百科

    本词条由 “科普中国”科学百科词条编写与应用工作项目 审核 。 string是C++、 java 、 VB 等编程语言中的 字符串,用双引号引起来的几个字符,如"Abc","一天".字符串是一个特殊的对象,属于引用类型。

  5. 字符串库 - cppreference.cn - C++参考手册

    字符串类(std::string 等) 类模板 std::basic_string 概括了字符序列的操纵和存储方式。 字符串的创建、操纵和销毁都由一套方便的类方法和相关函数处理。 为常用类型提供了 std::basic_string 的几种特化

  6. String - JavaScript | MDN - MDN Web Docs

    May 22, 2026 · String literals (denoted by double or single quotes) and strings returned from String calls in a non-constructor context (that is, called without using the new keyword) are primitive strings.

  7. STRING - SIB Swiss Institute of Bioinformatics - Expasy

    STRING is the knowledgebase of known and predicted protein-protein interactions. It includes direct (physical) and indirect (functional) associations derived from various sources, such as genomic …

  8. string - OI Wiki

    3 days ago · 为什么要使用 string 在 C 语言中,提供了字符串的操作,但只能通过字符数组的方式来实现字符串.而 string 则是一个简单的类,使用简单,在 OI 竞赛中被广泛使用.并且相较于其他 STL 容 …

  9. C++ string类用法详解(附带实例) - C语言中文网

    C++ string类用法详解(附带实例) 在 C++ 中,string 是一个功能强大的类,用于表示和处理字符串。 string 提供了一系列的便利函数,如连接、查找、替换、插入、删除和子串操作等。 我们可以将 string …

  10. 【深入理解java八股】String为什么是不可变的?我们在代码中要如何使用String

    Feb 28, 2025 · 揭开 String 的神秘面纱String 为什么是不可变的?在 Java 中, String 是不可变(immutable)的,这意味着 String 对象一旦创建,就不能修改其内容。那么,String 为什么被设计 …