# mkString

## definition

```scala
def mkString: String

def mkString(sep: String): String

def mkString(start: String, sep: String, end: String): String
```

## demo

```scala
val donuts: Seq[String] = Seq("Plain Donut", "Strawberry Donut", "Glazed Donut")
```

下面分别展示一下三种输出

```scala
scala> val donutsAsString: String = donuts.mkString(" and ")
donutsAsString: String = Plain Donut and Strawberry Donut and Glazed Donut

scala> val donutsWithPrefixAndSuffix: String = donuts.mkString("My favorite donuts namely ", " and ", " are very tasty!")
donutsWithPrefixAndSuffix: String = My favorite donuts namely Plain Donut and Strawberry Donut and Glazed Donut are very tasty!

scala> val donutsString = donuts.mkString
donutsString: String = Plain DonutStrawberry DonutGlazed Donut
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.selinux.tech/scala/function-operation/m/mkstring.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
