본문 바로가기

분류 전체보기1423

rust println println는 Display 트레잇을 구현한 타입만을 받도록 정의돼있다.이제까지 쓴 정수나 문자열 등도 전부 저걸 구현하고 있었던 것이다...먼저 이름과 나이를 갖는 간단한 타입 Person을 정의했다.struct Person{     name: String,     age: i32}이에 대한 Display를 구현해보자.Display에는 fmt라는 메서드가 하나 있다.이 메서드에선 포매터를 받아다가 그 write 매크로로 포매터에 출력할 문자열을 쓰고 반환한다.impl std::fmt::Display for Person{     fn fmt(&self, formatter:&mut std::fmt::Formatter)->std::fmt::Result    {          write!(formatter.. 2024. 6. 15.
기초_ rust for AI 출처: Rust for Artificial Intelligence: A Basic Guide | Reintech media TensorFlow, a powerful open source machine learning framework developed by the Google Brain team, has become a cornerstone in artificial intelligence. While traditionally associated with languages like Python, the advent of Rust, a systems programming language valued for its performance and safety, has opened new avenues for Te.. 2024. 6. 15.
rust 배우기 설치하기 - The Rust Programming Language (rinthel.github.io) 2024. 6. 15.
synth.exe 출처: Installation | Synth (getsynth.com)Installation To install on Windows, download the synth executable and run it from your cmd or Git BASH or Windows PowerShell. Then copy the downloaded executable to a suitable folder (e.g. C:\synth\synth.exe). Finally add synth to your PATH via your environment variables. You should now be able to use synth: Add to the PATH on Windows 10 and Windows 11📅 Ma.. 2024. 6. 15.
jeus ojdbc jdk 호환 출처: https://was-master.tistory.com/11JEUS 버전 별로 지원하는 JDK 버전 리스트 입니다.JEUS 버전Java(Jakarta) EE 버전Java SE 버전Servlet 버전권장 egovframework 버전JEUS 6 (Fix #9)Java EE 5JDK 5, 6, 72.52.xJEUS 7Java EE 6JDK 6, 73.03.0 ~ 3.5JEUS 8Java EE 7JDK 7, 83.13.6 ~ 3.10JEUS 8.5Jakarta EE 8JDK 8, 114.04.xJEUS 21Jakarta EE 8JDK 8, 114.04.x 각 JEUS 버전 별로 명시된 버전 외 다른 버전은 지원하지 않습니다. Java(Jakarta) EE 버전 지원과 Java SE 버전 지원의 차이를 .. 2024. 6. 14.