Namespaces
Variants
Actions
(Difference between revisions)

Archived:Helloworld em modo console

Jump to: navigation, search
m (Hamishwillee - Bot addition of Template:ArticleMetaData)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{ArticleMetaData
+
{{Archived|language=Lang-Portuguese|timestamp=20120309123400|user=[[User:Lpvalente|Lpvalente]]}}
 +
[[Category:Lang-Portuguese]][[Category:Symbian C++]][[Category:Code Snippet]]
 +
 
 +
{{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 6: 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 -->
|id= <!-- Article Id (Knowledge base articles only) -->
+
|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]]
}}Exemplo do Hello World em modo Console para Symbian OS.  
+
}}
 +
 
 +
{{Abstract|Exemplo do Hello World em modo Console para Symbian OS.}}
  
 
<code cpp>
 
<code cpp>
Line 50: Line 54:
 
}
 
}
 
</code>
 
</code>
 
[[Category:Lang-Portuguese]]
 
[[Category:Symbian C++]]
 
[[Category:Code Examples]]
 

Latest revision as of 09:22, 21 June 2012

Archived.png
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)
Dados do artigo

Artigo
Criado por cabezonxdg em 24 Apr 2008
Última alteração feita por hamishwillee em 21 Jun 2012

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;
}
This page was last modified on 21 June 2012, at 09:22.
296 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved