> For the complete documentation index, see [llms.txt](https://portugues-puro.gitbook.io/documentacao/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://portugues-puro.gitbook.io/documentacao/tipos-de-dados/conversao-de-tipos.md).

# Conversão de tipos

Em Português Puro, a conversão de dados é feita de forma explícita. Exemplo:

```
Converta o número para uma string denominada valor.
Converta a string para um número denominado quantidade.
```

Apesar disso é possível forçar o compilador a tratar um tipo de dado como sendo outro tipo. Para fazer isto é necessário utilizar a expressão <mark style="color:purple;">**tal como**</mark> ou <mark style="color:purple;">**tal qual**</mark>. Exemplos:

{% code overflow="wrap" %}

```
Atribua o byte à cifra binária tal como [se ele fosse] um byte.
Converta a string tal qual uma cifra hexadecimal para um texto hexadecimal.
Converta o ponteiro para uma string tal qual uma cifra hexadecimal.
Converta o trecho tal como  uma cifra hexadecimal para um texto hexadecimal.
Destrinche a variável global tal como [se ela fosse] uma variável.
Destrinche o campo tal como [se ele fosse] uma variável.
Disjuncione logicamente o ponteiro tal como [se ele fosse] um número com o número.
Inicie a folha tal como [se ela fosse] uma folha no modo retrato.
Redimensione a caixa arredondada tal como [se ela fosse] uma caixa usando a fração.
```

{% endcode %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://portugues-puro.gitbook.io/documentacao/tipos-de-dados/conversao-de-tipos.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
