전체 글43 VMware No 3D support is available from the host VMware에 RockyLinux iso 설치하려고하니 계속 같은 에러만 반복한다."No 3D support is available from the host"심지어 에러만 뜨는게 아니라 응답 없음이라 작업 관리자도 계속 켜서 작업끝내기 해줘야되는 귀찮음.. 처음부터 Default Images에서 받아서 안되길레 Desktop/Workstation Live Images로 받았더니 되는거 아닌가? 근데 그러다가 어느 순간 다시 같은 에러가 뜨길레 해결하기 위해 무한 검색을 시작했다. 그러다가 찾고야 말았다.우선 Edit virtual machine settings -> Display3D grahics -> Accelerate 3D graphics 해제 그리고 나서 Power on this viertual.. 2024. 9. 12. Dart with (Mixin) 이해하기 클래스를 상속받는 것 외에 with를 통해 다른 클래스의 멤버 변수와 멤버 함수를 사용할 수 있습니다. with (Mixin)을 사용해 다른 클래스의 멤버 함수를 사용해보겠습니다. class Human { String name; int age; Human({ required this.name, required this.age, }); void intro() { print("My name is $name and I'm $age years old."); } } class Student extends Human with highScore{ final int number; Student({ required String name, required int age, required this.number, }) : s.. 2023. 1. 7. Dart Inheritance & override 이해하기 Dart의 상속에 대해서 이해해보겠습니다. 먼저 Human Class를 생성합니다. Human 클래스는 이름과 나이를 나타내는 멤버 변수로 가지고 있습니다. class Human { String name; int age; Human({ required this.name, required this.age, }); void intro() { print("My name is $name and I'm $age years old."); } } 다음은 Human 클래스를 상속받은 Student 클래스를 생성합니다. Student 클래스는 학생ID를 나타내는 number 라는 멤버 변수를 하나 더 가지고 있습니다. class Student extends Human { final int number; Student({.. 2023. 1. 6. Dart Cascade Notation Cascade Notation에 알아보기 위해 먼저 클래스를 생성하고 그 값을 변경하는 코드를 작성하겠습니다. class Human { String name; int age; String hair; Human({ required this.name, required this.age, required this.hair, }); void intro() { print("My name is $name and I'm $age years old. My hair-color is $hair"); } } void main() { var human = Human(name: 'name', age: 20, hair: 'gold'); human.age = 21; human.hair = 'silver'; human.name = '.. 2023. 1. 5. 이전 1 2 3 4 ··· 11 다음