Archived:Helloworld em modo console
m (Lpvalente -) |
hamishwillee
(Talk | contribs) |
||
| (4 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
| − | [[Category:Lang-Portuguese]][[Category:Symbian C++]][[Category:Code | + | {{Archived|language=Lang-Portuguese|timestamp=20120309123400|user=[[User:Lpvalente|Lpvalente]]}} |
| − | + | [[Category:Lang-Portuguese]][[Category:Symbian C++]][[Category:Code Snippet]] | |
| − | {{ArticleMetaData | + | {{ArticleMetaData <!-- v1.2 --> |
|sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | |sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | ||
|installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| Line 9: | Line 9: | ||
|platform= <!-- Compatible platforms - e.g. Symbian^1 and later, Qt 4.6 and later --> | |platform= <!-- Compatible platforms - e.g. Symbian^1 and later, Qt 4.6 and later --> | ||
|devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | |devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | ||
| − | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> |
| − | |signing=<!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> | + | |signing= <!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> |
| − | |capabilities=<!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | + | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> |
|keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> | |keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> | ||
| − | + | |language= Lang-Portuguese | |
| − | |language=Lang-Portuguese | + | |
|translated-by= <!-- [[User: XXXXX]] --> | |translated-by= <!-- [[User: XXXXX]] --> | ||
| − | |translated-from-title=<!-- Title only --> | + | |translated-from-title= <!-- Title only --> |
|translated-from-id= <!-- Id of translated revision --> | |translated-from-id= <!-- Id of translated revision --> | ||
| − | |review-by=<!-- After re-review: [[User:username]] --> | + | |review-by= <!-- After re-review: [[User:username]] --> |
| − | |review-timestamp=<!-- After re-review: YYYYMMDD --> | + | |review-timestamp= <!-- After re-review: YYYYMMDD --> |
| − | |update-by=<!-- After significant update: [[User:username]]--> | + | |update-by= <!-- After significant update: [[User:username]]--> |
| − | |update-timestamp=<!-- After significant update: YYYYMMDD --> | + | |update-timestamp= <!-- After significant update: YYYYMMDD --> |
| − | |creationdate=20080424 | + | |creationdate= 20080424 |
| − | |author=[[User:Cabezonxdg]] | + | |author= [[User:Cabezonxdg]] |
}} | }} | ||
Latest revision as of 09:22, 21 June 2012
Aquivado: Este artigo foi arquivado, pois o conteúdo não é mais considerado relevante para se criar soluções comerciais atuais. Se você achar que este artigo ainda é importante, inclua o template {{ForArchiveReview|escreva a sua justificativa}}.
Acredita-se que este artigo ainda seja válido no contexto original (quando ele foi escrito)
Acredita-se que este artigo ainda seja válido no contexto original (quando ele foi escrito)
Dados do artigo
Exemplo do Hello World em modo Console para Symbian OS.
#include <e32base.h>
#include <e32cons.h>
TInt E32Main()
{
CConsoleBase* gConsole; // Criação do console
_LIT(KTituloConsole, "Aplicação console");
_LIT(KOlaMundo, "Ola Mundo!");
gConsole = Console::NewL(KTituloConsole, TSize(KConsFullScreen,KConsFullScreen)); // Instancialização do console
gConsole->Printf(KOlaMundo);
User::After(100000000); // pausa a aplicação por 100000000 microsegundos.
return 1;
}
Mesmo exemplo na linguagem C para desktop.
int main()
{
const char* olaMundo = "Ola Mundo!";
printf(olaMundo);
return 1;
}

